如何编写 keyup 函数
可能的重复:
按下 Enter 键时运行 Jquery 方法
我正在尝试编写一个函数,当用户按下回车键时,它会执行与下面的代码相同的操作:
$('#switch-fighter-search-button-link').click(function(){
window.location=$(this).attr("href")+$('#switch-fighter-text').val();
return false;
});
我怎样才能完成这个?
Possible Duplicate:
Run Jquery method when enter key is press
I am trying to write a function that when the user presses the enter key it does the same thing as the code below:
$('#switch-fighter-search-button-link').click(function(){
window.location=$(this).attr("href")+$('#switch-fighter-text').val();
return false;
});
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个(我假设你根据问题内容使用 jQuery):
Try this (I am assuming you are using jQuery based on the question contents):
在 jQuery e.which 中,它将通过跨浏览器方法获取字符的 ASCII 代码(而不是必须自己执行此操作)。
in jQuery e.which will get the ASCII code of the character in a cross-browser method (vs. having to do that yourself).