from表单提交设置快捷键 ,“ctrl”+'enter'
是设置accesskey属性吗,如何设置
------解决方案--------------------
自己搜下 event keycode 一搜一大把~~ 找到对应的key 设置事件就可以了很简单
------解决方案--------------------
注册keydown事件
window.onload=function(){
documen.getElementById('表单ID').onkeydown=function(e){
e=e
------解决方案--------------------
window.event;
if(e.ctrlKey&&e.keyCode==13)this.submit()
}
}
------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function init(){
document.onkeydown=function(e){
var a=e
------解决方案--------------------
window.event;
if(a.ctrlKey&&a.keyCode==13){
alert("a");
}
}
}
window.onload=init;
</script>
</head>
<body>
</body>
</html>
试试