入力をクリックしたときに「検索」ボタンをクリックできるようにしたい。
これは私のHTMLです
<input type="text" runat="server" id="txtSearch" onkeypress="searchKeyPress(event);"
<input type="button" runat="server" style="padding:5px;" id="butSearch" onserverclick="butSearch_Click" value="Search" disabled/>
これは私が使用しているjavascriptです
function searchKeyPress(e) {
if (typeof e == 'undefined' && window.event) { e = window.event; }
if (e.keyCode == 13) {
document.getElementById("butSearch").click();
}
}
ただし、エラーが発生します
'Uncuaght TypeError:Cannot call method click of nul'
このエラーが発生する理由についておそらくアドバイスがあり、これを達成するためのより良い代替手段はありますか?