HTML DOM id 属性
定义和用法
id 属性可设置或返回按钮的 id。
语法
buttonObject.id=id
实例
下面的例子可获取按钮的 id:
<html>
<head>
<script type="text/javascript">
function alertId()
{
alert(document.getElementById("myButton").id
)
}
</script>
</head>
<body>
<form>
<input type="button" value="Click me!" id="myButton"
onclick="alertId()" />
</form>
</body>
</html>