我创建了这样的设计。但是提交Tabindex不能正常工作。请检查一下并告诉我。
<input id="id" type="text" value="" class="input" tabindex="1"/>
<input id="userName" type="text" value="" tabindex="2"/>
<input type="button" value="search" onclick="searchbyrole()" tabindex="3"/>
点击后输入用户名输入不触发搜索操作。请告诉我为什么tabindex没有正常执行。
答案 0 :(得分:0)
您可以使用以下代码执行此操作:
<script type="text/javascript">
$(document).bind('keydown', function (e) {
if (e.which === 13) { // return
$('#IdOfTheButton').trigger('click');
}
});
</script>