input 回车 事件响应

$(document).ready(function()
{
$(document).keypress(function(e){
var curKey = e.which;
if(curKey == 13)
{
pushButton();
}
});
});

  

  

相关文章:

  • 2021-11-01
  • 2022-12-23
  • 2021-06-05
  • 2021-12-05
  • 2022-12-23
  • 2021-09-17
猜你喜欢
  • 2021-06-22
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
  • 2022-12-23
  • 2021-12-29
  • 2021-09-17
相关资源
相似解决方案