inputButtonObject.disabledは、汎用ボタン(type属性がbuttonであるinput要素)のdisabled属性の値を取得、もしくは、設定するプロパティ。
disabled属性には、汎用ボタンを無効にするかどうかを指定することができる。
構文
取得
var $disabled = $inputElementReference.disabled;
戻り値
汎用ボタン(type属性がbuttonであるinput要素)のdisabled属性の値。
設定
$inputElementReference.disabled = boolean;
- boolean
- 無効にするかどうかを指定。
true
:無効化する。false
:無効化しない。
サンプル
サンプルボタンのdisabled属性の値:
0
サンプルの動作について
- 「サンプルボタン」ボタンをクリックすると、「サンプルボタン」ボタンの右横の数字をカウントアップしていく。
- 「true」ボタンをクリックすると、「サンプルボタン」ボタンのdisabled属性値を「true」に設定し、「サンプルボタン」ボタンを無効にする。「サンプルボタンのdisabled属性の値:」の右横に「true」と表示する。
- 「false」ボタンをクリックすると、「サンプルボタン」ボタンのdisabled属性値を「false」に設定し、「サンプルボタン」ボタンを有効にする。「サンプルボタンのdisabled属性の値:」の右横に「false」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setDisabled( $disabled ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.disabled = $disabled;
var $disabled = $elementReference.disabled;
document.getElementById( "sampleOutputA" ).innerHTML = $disabled;
}
var $sampleCount = 1;
function sampleCountUp( $disabled ) {
document.getElementById( "sampleOutputB" ).innerHTML = $sampleCount++;
}
</script>
function setDisabled( $disabled ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.disabled = $disabled;
var $disabled = $elementReference.disabled;
document.getElementById( "sampleOutputA" ).innerHTML = $disabled;
}
var $sampleCount = 1;
function sampleCountUp( $disabled ) {
document.getElementById( "sampleOutputB" ).innerHTML = $sampleCount++;
}
</script>
HTML
<p>
<button onclick="setDisabled(true);">true</button>
<button onclick="setDisabled(false);">false</button>
</p>
<p>サンプルボタンのdisabled属性の値:<span id="sampleOutputA"></span></p>
<p>
<input type="button" value="サンプルボタン" id="sample" onclick="sampleCountUp();">
<span id="sampleOutputB">0</span>
</p>
<button onclick="setDisabled(true);">true</button>
<button onclick="setDisabled(false);">false</button>
</p>
<p>サンプルボタンのdisabled属性の値:<span id="sampleOutputA"></span></p>
<p>
<input type="button" value="サンプルボタン" id="sample" onclick="sampleCountUp();">
<span id="sampleOutputB">0</span>
</p>