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

HTML DOM disabled 屬性

定義和用法

disabled 屬性可設(shè)置或返回是否禁用按鈕。

語法

buttonObject.disabled=true|false

實例

下面的例子將禁用按鈕:

<html>
<head>
<script type="text/javascript">
function disableButton()
{
document.getElementById("myButton").disabled=true
}
</script>
</head>

<body>
<form>
<button id="myButton" onClick="disableButton()">
Click Me!</button>
</form>
</body>

</html>