javascript按回车键触发事件

<form id="search-form" >
      <input type="text"  onkeypress="getKey();return false;"  name="keyword" placeholder="搜索明星名称"/>
      <button type="button" onclick="changeKeyword();">搜索</button>
</form> 

   function getKey(){ //网页内按下回车触发
          if(event.keyCode==13)
          {
          changeKeyword(); 
        }
   } 

  在搜索栏里面输入内容后,按回车键执行搜索功能。  注意:在onkeypress函数 后面要加上return false 以屏蔽form表单自己默认的提交行为。

   

posted @ 2016-06-24 18:21  侧耳倾听的世界  阅读(1137)  评论(0编辑  收藏  举报