我在wordpress工作。我在按Tab键时创建了焦点输入和链接的jquery。我的jquery是这样的:
~/.profile
html代码是:
jQuery('.input').bind('keydown',function(e){
//e.preventDefault() ;
var code = e.which;
//alert(code);
if(code == 9)
{
var tab = jQuery(this).attr('tabindex');
tab++;
jQuery('[tabindex="' + tab + '"]').next().focus();
}
});
现在,当我按Tab键时,它将只关注文本字段和链接。它不会关注记住复选框,登录和取消按钮。那么我应该怎么做才能专注于登录和注册按钮?