buttonObject.tabIndexは、button要素(ボタン要素)のtabIndex属性の値を取得、もしくは、設定するプロパティ。
tabIndex属性には、Tabキーでフォーカスを当てる順番(タブインデックス)を指定できる。
構文
取得
var $tabIndex = $buttonElementReference.tabIndex;
戻り値
button要素(ボタン要素)のtabIndex属性の値。
設定
$buttonElementReference.tabIndex = buttonElementTabIndex;
- buttonElementTabIndex
- タブインデックスを、半角の整数で指定する。
- 正の整数:Tabキーでフォーカスを当てる順番。
- 負の整数:Tabキーでフォーカスを当てない。
- 0:要素の出現順に従う。
サンプル
サンプルボタンのtabIndex属性の値:
サンプルの動作について
- 「1」ボタンをクリックすると、「サンプルボタン」ボタンのtabIndex属性値を「1」に設定する。「サンプルボタンのtabIndex属性の値:」の右横に「1」と表示する。
- 「2」ボタンをクリックすると、「サンプルボタン」ボタンのtabIndex属性値を「2」に設定する。「サンプルボタンのtabIndex属性の値:」の右横に「2」と表示する。
- 「3」ボタンをクリックすると、「サンプルボタン」ボタンのtabIndex属性値を「3」に設定する。「サンプルボタンのtabIndex属性の値:」の右横に「3」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setTabIndex( $tabIndex ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.tabIndex = $tabIndex;
var $tabIndex = $elementReference.tabIndex;
document.getElementById( "sampleOutput" ).innerHTML = $tabIndex;
}
</script>
function setTabIndex( $tabIndex ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.tabIndex = $tabIndex;
var $tabIndex = $elementReference.tabIndex;
document.getElementById( "sampleOutput" ).innerHTML = $tabIndex;
}
</script>
HTML
<p>
<button onclick="setTabIndex('1');">1</button>
<button onclick="setTabIndex('2');">2</button>
<button onclick="setTabIndex('3');">3</button>
</p>
<p>サンプルボタンのtabIndex属性の値:<span id="sampleOutput"></span></p>
<p><button id="sample" tabIndex="1">サンプルボタン</button></p>
<button onclick="setTabIndex('1');">1</button>
<button onclick="setTabIndex('2');">2</button>
<button onclick="setTabIndex('3');">3</button>
</p>
<p>サンプルボタンのtabIndex属性の値:<span id="sampleOutput"></span></p>
<p><button id="sample" tabIndex="1">サンプルボタン</button></p>