我所有表单中的 JavaScript KeyUp(例如 Enter 键)->显示警报
我知道我们如何使用元素的 onkeyup
事件...
但我希望当客户端按下回车键(例如)时在我的所有表单区域中发出警报(不是在唯一元素上)
Javascript 中是否已有函数可以执行此操作?我应该创建一个函数来执行此操作吗?或者我应该在 Javascript 区域代码中放置警报代码(带有嵌套的 if 语句)而不使用函数?
这是我的第一个问题。
我的第二个问题是:
我知道 IE 和 Firefox 中关键事件的差异以及...(键码和字符码以及...) 使用 IE 和 Firefox 的按键事件来检测我解释的上部情况的最佳方法是什么?
I know how can we use onkeyup
event of an element...
but I want to have an alert in all of my form areas when a client presses the enter key (for example) (not on an unique element)
Is there a function that already exists in Javascript to do this? Should I create a function to do this? Or should I put alert code (with nested if statements) in Javascript area code without using a function?
That was my #1 question..
My #2 question is:
I know differences about key events in IE and Firefox and ... (keycode and charcode and ...)
What is the best way for using key events for IE and Firefox for detecting upper situation that I explained?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
回答你的第一个问题:
有关击键的更多信息: 检测击键
按下时禁用 Enter 键的示例
Answer to you first question :
more about keystrokes : Detecting keystrokes
Example to disable enterkey on press
2.问题:
通过这个脚本可以检测大小写:
2. Question:
With this script you can detect upper/lower case: