我创建了一个简单的注册表。我想要的是,当我按Enter键时,它应该提交我的表格。我尝试了几次尝试,但没有成功。
HTML代码
<p id="mtbox">Please Enter the Registered Email
<input type="email" name="agendaEmail" id='agendaEmail' onkeypress="searchKeyPress(event);"/></p>
<button type="button" id='goSubmit'onclick="getMailList($('#agendaEmail').val())">Go</button>
js代码
$("#agendaEmail").keyup(function(event){
if(event.keyCode == 13){
$("#goSubmit").click();
}
});
最佳答案
创建一个from并为其创建一个id并使用以下代码
$("#agendaEmail").keyup(function(event){
if(event.keyCode == 13){
$("#goSubmit").submit();
}
});
关于javascript - 在HTML表单上提交Enter键,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22005453/