index.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Nano Bind Sample</title>
  7. <link href="index.css" rel="stylesheet" type="text/css" />
  8. </head>
  9. <body>
  10. <input type="text" id="text1">
  11. <p id='p1'></p>
  12. <p><input name="dzen" type="radio" value="nedzen"> Не дзен</p>
  13. <p><input name="dzen" type="radio" value="dzen"> Дзен</p>
  14. <p><input name="dzen" type="radio" value="pdzen" checked> Полный дзен</p>
  15. <p>
  16. <textarea id="textarea"></textarea>
  17. </p>
  18. <p>
  19. <select id="select">
  20. <option value="">--</option>
  21. <!--<option value="M" style="background-color: gray;">Male</option>-->
  22. <!--<option value="F">Female</option>-->
  23. <!--<option value="X">Xenomorph</option> -->
  24. </select>
  25. </p>
  26. <input type='checkbox' id='check1'><br/>
  27. <table>
  28. <tbody id="numberTable">
  29. <tr>
  30. <td>table template line 1</td>
  31. </tr>
  32. <tr style='background-color: gray;'>
  33. <td>table template line 2</td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. <table>
  38. <tbody id="hashTable">
  39. <tr>
  40. <td class='age'></td>
  41. <td>asdfad</td>
  42. <td class='surname'></td>
  43. <td>zzzzZZZ</td>
  44. <td class='name'></td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. <strong>Use $s variable for accessing data in DOM</strong>
  49. <pre id='state' style='background-color: lightgray;'>
  50. 2 seconds timeout
  51. </pre>
  52. <script src="index.js"></script>
  53. </body>
  54. </html>