ASP.NET中JS如何控制触发哪一个提交按钮?
发布网友
发布时间:2022-04-25 13:46
我来回答
共2个回答
热心网友
时间:2022-04-25 15:15
1、JavaScript 方法:
[javascript] <script>
document.onkeydown=function(event){
e = event ? event :(window.event ? window.event : null);
if(e.keyCode==13){
//执行的方法
alert('回车检测到了');
}
}
</script>
<script>
document.onkeydown=function(event){
e = event ? event :(window.event ? window.event : null);
if(e.keyCode==13){
//执行的方法
alert('回车检测到了');
}
}
</script>
2、jQuery 方法:
[javascript] <script>
$(document).ready(function(){
$("按下回车的控件").keydown(function(e){
var curKey = e.which;
if(curKey == 13){
$("#回车事件按钮控件").click();
return false;
}
});
});
</script>
热心网友
时间:2022-04-25 16:33
$('body').bind('keydown', function(e) {
switch (e.which) {
case 13:
//业务控制代码 可以用return false 阻止提交.也可以用.form,submit() 提交表单
default:
}
});追问这种方法测试过,不起作用