本文實例講述了js與jquery回車提交的方法。分享給大家供大家參考。具體如下:
1、JavaScript 方法:
<script> document.onkeydown=function(event){ e = event ? event :(window.event ? window.event : null); if(e.keyCode==13){ //執行的方法 alert('回車檢測到了'); } } </script> <script> document.onkeydown=function(event){ e = event ? event :(window.event ? window.event : null); if(e.keyCode==13){ //執行的方法 alert('回車檢測到了'); } } </script>
2、jQuery 方法:
<script> $(document).ready(function(){ $("按下回車的控件").keydown(function(e){ var curKey = e.which; if(curKey == 13){ $("#回車事件按鈕控件").click(); return false; } }); }); </script>
希望本文所述對大家的javascript程序設計有所幫助。