我有一个问题,我试图从文本框中执行搜索查询并尝试使用 enter 来启动搜索;但是,它似乎不起作用。我想知道 vb.net/asp.net 是否正在做回发或我不知道的事情。
ASPX 页面
<form class="navbar-search">
<input id="searchbox" type="text" class="search-query span3" placeholder="Search" />
<div class="icon-search"></div>
</form>
jQuery
$('#searchbox').keyup(function (e) {
//alert("this will execute");
if (e.which == 13) {
alert("this will not execute");
//window.location.href = "http://www.google.com/";
}
});
我无法执行警报框或更改位置工作......如果有人可以帮助我感激它。