我有这个文本字段:
<input id="address" type="text" value="">
这个按钮:
<input id="ricerca" type="button" class="enter" value="GO!">
和 jQuery:
$("#ricerca").click(function(){
var e = jQuery.Event('keypress');
e.which = 13; // #13 = Enter key
$("#address").focus();
$("#address").trigger(e);
});
#address
我想通过单击按钮来模拟在字段内按“Enter” #ricerca
。#address
当我按下按钮时,光标必须在字段内。
你能告诉我错误在哪里吗?