UK[dɪsˈeɪbld] US[dɪsˈebəld]

adj. 障害のある、欠陥のある

v. 不能にする (disable の過去形および過去分詞); 無効にする; にする無効にする; 無効にする

javascript disabled属性 構文

関数:ボタンを無効にするかどうかを設定または返します。

構文: buttonObject.disabled=true|false

javascript disabled属性 例

<html>
<head>
<script type="text/javascript">
function alertId()
{
var txt="Id: " + document.getElementById("myButton").id
txt=txt + ", type: " + document.getElementById("myButton").type
alert(txt)
document.getElementById("myButton").disabled=true
}
</script>
</head>

<body>
<form>
<button id="myButton" onClick="alertId()">请点击我!</button>
</form>
</body>
</html>
インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します