HTML DOM id 属性
定义和用法
id 属性可设置或返回重置按钮的 id。
语法
- resetObject.id=id
实例
下面的例子可获得出重置按钮的 id:
- <html>
- <head>
- <script type="text/javascript">
- function alertId()
- {
- alert(document.getElementById("reset1").id)
- }
- </script>
- </head>
- <body>
- <form>
- <input type="reset" id="reset1" onclick="alertId()" />
- </form>
- </body>
- </html>