我目前正在尝试在我的网站中的所有用户控件上创建“输入”按钮选项卡。虽然我不想将我网站上的每个控件重命名为:" control1,control2等。"并以这种方式通过他们。
这是我目前的代码:
function enterToTab(e) {
var intKey = window.Event ? e.which : e.KeyCode;
//If the key that is pushed is the enter key we will not submit.
if (intKey == 13)
{
e.KeyCode = 9;
e.returnValue = false;
}
}
然后在主页面asp我有这个:
<body onkeydown="enterToTab(event);">
目前我的代码不会显示,但是当用户按下回车键时,它会阻止页面重新提交。任何额外的想法或想法将不胜感激。
另外,我没有Jquery库,所以这应该是javascript。