当我的 php 页面加载一些 jQuery 时,应该将焦点设置到我的输入文本框,但它没有
我尝试过类似的css选择器input[tabindex=1]
,#31
但无济于事......
这是 jQuery(版本 1.7.1)
$(function() {
$('input[tabindex=1]').focus(); // also tried $('#31').focus();
});
这是HTML
<input tabindex='1' type='text' class='tablefilter' id='31' style='width:80px;border:inset 2px grey;background-color:white;font-size:12px;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;'/>
关于为什么这不起作用的任何线索?