如何在文本框中按Enter键生成锚标记的点击事件

时间:2012-04-25 02:02:53

标签: javascript jsp javascript-events

我正在开发一个JSP页面,其中我有很多锚标签。所以我放了一个文本框,我可以搜索我页面上的所有锚标签。我正在使用javascript

现在我需要的是当我在文本框中发送锚标记名称并按Enter键时,它应该可以作为该特定锚标记的点击。

我已尝试过以下代码,但它对我不起作用。

    <script>
function searchkeypress(e)
{
if(typeof e=='undefined'&& window.event){e=window.event;}
if(e.keycode==13)
document.getElementById("search").click();
}
</script>

<input type="text" id="text1" onkeypress="searchkeypress(event)"/>
<a id="search" href="#Ajax" onclick="index.jsp"/>

1 个答案:

答案 0 :(得分:1)

<input type="text" id="txtSearch" onkeydown="if (event.keyCode == 13) document.getElementById('index').click()"/>
<a id="index" href="index.jsp"/>