欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM id 屬性

定義和用法

id 屬性可設(shè)置或返回重置按鈕的 id。

語法

resetObject.id=id

實(shí)例

下面的例子可獲得出重置按鈕的 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>