当我按下Enter键时,如何单击按钮,我该怎么做?当我按下Enter键时,我希望它运行与我执行“onclick”事件时相同的脚本。
<button type="button" value="Login" class="btn green uppercase" onclick="formhash(this.form, this.form.password);">Login</button>
答案 0 :(得分:0)
对于您的具体示例:
document.body.addEventListener('keydown', function(e) {
if (e.keyCode == 13) {
formhash(this.form, this.form.password);
}
});