早上好...
我在每个页面中使用 java 脚本来触发Enter文本框中的按键事件。它工作正常。现在我想将代码放在.js
文件中以供全局访问。
function EnterKeyPress(id,e) {
// look for window.event in case event isn't passed in
if (window.event) { e = window.event; }
if (e.keyCode == 13 || e.keyCode == 121) {
window.document.getElementById('<%= ibtnSubmit.ClientID %>').click();
}
}
我不想硬编码控件ID。有人可以帮我吗..