本文介绍了如何使用javascript设置tabindex的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用javascript为HTML输入项设置tabindex属性
我尝试了以下
how can I set tabindex property for an HTML input item using javascript
I tried the following
function onPageLoad()
{
if(condition)
{
document.getElementById("fieldName").tabindex =12;
alert(document.getElementById("fieldName").tabindex);
}
}
好吧,它会警告"12",这很好,但是tabindex属性不适用于此元素,而适用于静态设置的其他元素...
在此先感谢...
well , it alerts ''12'' and that''s good , but the tabindex property doesn''t work for this element , while it works for other elements that are set statically ...
thanks in advance ...
推荐答案
这篇关于如何使用javascript设置tabindex的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!