在我的网页中,如果我单击该按钮,就会生成一个gridview。我正在使用Tab键浏览该网页...单击该按钮后,焦点不会转到gridview而是转到页脚元素...。 为什么需要Focus进行gridview是使用nvda屏幕阅读器读出其中的内容... 问题:我应该如何将焦点集中到gridview?
答案 0 :(得分:0)
您可以使用jQuery
$(':text').on("focus", function(){
//here set in localStorage id of the textbox
localStorage.setItem("focusItem", this.id);
//console.log(localStorage.getItem("focusItem"));test the focus element id
});