<style> #XY{ width:40px; height:100px; background:#aaa; } </style> <input type="input" /> <script> $(document).ready(function() { $("input").keyup(function(e){ if(e.which=="13"){ alert("回车提交!") } }) }); </script>
时间: 2024-10-12 22:31:12
<style> #XY{ width:40px; height:100px; background:#aaa; } </style> <input type="input" /> <script> $(document).ready(function() { $("input").keyup(function(e){ if(e.which=="13"){ alert("回车提交!") } }) }); </script>