1、情境描述html
欲實現:文本框中輸入字符,點擊回車,自動跳到一個新窗口且該頁面不刷新ide
2、代碼實現orm
HTMLhtm
<body> <input type="text" id="aa" onkeydown="enterSearch()"/> </body>
JQueryinput
function enterSearch() { if(event.keyCode==13) { window.open( "Default.aspx"); } }
注意:搜索框不能放在Form表單中,不然會刷新原頁面it