我有一个脚本 有一个是 文本框 我输入了东西 点击 搜索 就能搜索了 但是我 怎么才能 在文本框输入后 按回车 也立即 搜索 应该怎么加...
下面是我的 脚本,
<td align="center"><select name="s2" id="s2" style="FONT-SIZE:8pt;">
<option value="Shw">推荐店家</option>
<option value="Lifefind">推荐菜品</option>
</select></td>
<td align="center" style="padding-bottom: 0px"><input type="text" name="txt" ID="Text1" maxlength="15" size="8" style="height:14px"></td>
<td width="50"><a href="javascript:to('Lifescout.aspx','Text1','s2')">搜索</a></td>
<script language="javascript">
function to(LinkUrl,textid,selectid)
{
var txtValue=window.document.getElementById(textid).value;
if(txtValue=="" )
{
alert("搜索不能为空!");
}
else
{
var bb=document.getElementById(selectid);
var aa = bb.options[bb.selectedIndex].value;
var txt = LinkUrl+"?o="+aa+"&name="+window.encodeURIComponent(txtValue);
window.location.href=txt;
}
}
</script>