html5_selector.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <title>jQuery selector - attributes</title>
  6. <script src="../../jquery.js"></script>
  7. <script id="script1"
  8. defer
  9. async></script>
  10. <script type="text/javascript">
  11. document.createElement('video');
  12. document.createElement('audio');
  13. document.createElement('article');
  14. document.createElement('details');
  15. </script>
  16. </head>
  17. <body>
  18. <img id="img1"
  19. ismap>
  20. <hr id="hr1"
  21. noshade>
  22. <form id="form1"
  23. name="formName"
  24. novalidate
  25. formnovalidate>
  26. <input type="text" id="text1"
  27. tabindex="1"
  28. name="name"
  29. required
  30. autofocus
  31. readonly>
  32. <textarea id="textarea1"
  33. noresize></textarea>
  34. </form>
  35. <table>
  36. <tr><td id="td1"
  37. nowrap></td></tr>
  38. </table>
  39. <iframe id="iframe1"
  40. src="iframe.html"
  41. seamless></iframe>
  42. <style id="style1"
  43. scoped></style>
  44. <ol id="ol1"
  45. reversed></ol>
  46. <article id="article1"
  47. pubdate></article>
  48. <details id="details1"
  49. open></details>
  50. <div id="div1"
  51. nowrap
  52. hidden
  53. itemscope
  54. draggable="true"
  55. contenteditable="true"
  56. aria-disabled="true">
  57. <p>My name is <span id="span1"
  58. spellcheck="true"
  59. itemprop="name">Elizabeth</span>.</p>
  60. </div>
  61. <audio id="audio1"
  62. muted></audio>
  63. <video id="video1"
  64. loop
  65. controls
  66. autoplay
  67. autobuffer></video>
  68. <map id="map1">
  69. <area id="area1"
  70. nohref
  71. shape="default">
  72. </map>
  73. <input id="check1"
  74. type="checkbox"
  75. disabled
  76. checked>
  77. <select id="select1"
  78. multiple>
  79. <option id="option1"
  80. selected
  81. value="blar">blar</option>
  82. </select>
  83. <dl id="dl"
  84. compact>
  85. <dt>Term</dt><dd>This is the first definition in compact format.</dd>
  86. <dt>Term</dt><dd>This is the second definition in compact format.</dd>
  87. </dl>
  88. <object id="object1"
  89. declare></object>
  90. <marquee id="marquee1"
  91. direction="up"
  92. truespeed>Scrolling text (non-standard)</marquee>
  93. </body>
  94. </html>