Rumah > Soal Jawab > teks badan
大家讲道理2017-04-11 09:46:25
可以, 比如设置为 ctrl + s
触发提交
window.addEventListener('keydown', function (e) {
if (e.ctrlKey && e.keyCode === 83) { //s 的keyCode 为 83
e.preventDefault()
console.log('submit')
}
})
阿神2017-04-11 09:46:25
一般表单提交设定是 点击计较按钮或者是enter按键提交
如果是html页面表单提交可以将提交按钮改成这样
<input type=submit value="提交" />
或者是监听enter建的按下的事件来进行提交