div要素のボタンがあり、ユーザーがキーボードのタブキーを押してボタン間を移動できるようにボタンを作成したいと考えています。テキストをアンカータグでラップしようとしましたが、動作しないようです。
誰かが解決策を持っていますか?
div要素のボタンがあり、ユーザーがキーボードのタブキーを押してボタン間を移動できるようにボタンを作成したいと考えています。テキストをアンカータグでラップしようとしましたが、動作しないようです。
誰かが解決策を持っていますか?
href
属性がある場合は、機能するはずです。これは、アクティブ化可能なアイテムが実際に何かを行わない限り、マークアップの適切な使用である場合とそうでない場合があります。
回答:
要素にtabindex
属性を追加しますdiv
。
例:
<div tabindex="1">First</div>
<div tabindex="2">Second</div>
steveaxのコメントによると、要素がページのどこにあるかからタブオーダーを逸脱させたくない場合は、をに設定tabindex
し0
ます。
<div tabindex="0">First</div>
<div tabindex="0">Second</div>
tabindex=0
自然なタブの順序にこだわらないように使用する方が良いでしょう。
興味のある方は、受け入れられた回答に加えて、次のjqueryを追加して、タブに移動したときにdivスタイルを変更し、EnterとSpaceを処理してクリックをトリガーすることができます(その後、クリックハンドラーが残りを行います)
$(document).on('focus', '.button',function(){
$(this).css('border','1px dotted black')
});
$(document).on('keyup', '.button',function(e){
if(e.which==13 || e.which==32)
$(this).click()
});
私は誰かがこれをjqプラグインにしたと確信しています$()。makeTabStop
tabindex="0"
タブ可能にする各divに属性を追加します。次に、CSS疑似クラス:hoverおよび:focusを使用して、たとえば、divがフォーカスされており、クリック可能であることをアプリユーザーに通知します。JavaScriptを使用してクリックを処理します。
var doc = document;
var providers = doc.getElementsByClassName("provider");
for (var i = 0; i < providers.length; i++) {
providers[i].onclick = function() {
console.log(this.innerHTML);
};
}
.provider {
flex: 0 1 auto;
align-self: auto;
width: 256px;
height: 48px;
margin-top: 12px;
margin-right: 12px;
text-align: center;
line-height: 48px;
text-transform: uppercase;
background-size: contain;
background-repeat: no-repeat;
background-position: 10%;
background-color: gray;
}
.provider:hover{
cursor: pointer;
}
.provider:focus{
-webkit-box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.4);
box-shadow: 0px 2px 8px 2px rgba(0,0,0,0.4);
}
<h4>Click in this area first then press tab</h4>
<div id="email" class="provider" tabindex="0">email</div>
<div id="facebook" class="provider" tabindex="0">facebook</div>
<div id="github" class="provider" tabindex="0">github</div>
<div id="google" class="provider" tabindex="0">google</div>
<div id="twitter" class="provider" tabindex="0">twitter</div>
仮定
サンプルhtml:
...
<div onclick="clicked(this)">Button 1</div>
<div onclick="clicked(this)">Button 2</div>
<div onclick="clicked(this)">Button 3</div>
...
Jqueryコード:これは、ページが読み込まれたときに実行されるコードです。HTMLページで実行する必要があります。
$(()=>{
// make divs with an onclick attribute tabbable/clickable
$('div[onclick]')
.attr('tabindex', '0') // Add tab indexes
.keypress((evt)=>{
var key = evt.key;
evt.preventDefault(); // Ensure all default keypress
// actions are not used
if (key === ' ' || key === 'Enter') { // Only send click events for Space
// or Enter keys
evt.currentTarget.click(); // Run the click event for element
}
});
});
ここで実用的な例を見つけることができます。