我有这个表格,我需要在按下 ENTER 时提交。一切看起来都很好,但只是没有用。单击搜索按钮时工作正常,但我也需要使用 ENTER 按钮。
HTML 代码:
<form id="SearchForm" action="mysite.com/search" target="my-iframe" method="post">
<input type="text" id="x" class="dimmed" name="keywords[all_words]" />
<div class="fieldbg"><input type="text" id="y" class="dimmed" name="City[all_words]" /></div>
<type class="btn_search row_right" onclick="document.getElementById('SearchForm').submit()">
我试过这个脚本,不工作:
<script>
window.onload = function() {
var textbox = document.getElementById('x');
textbox.onkeypress = function (e) {
if (e.keyCode === 13) {
document.getElementById('SearchForm').submit();
}
};
}
</script>