页面内任何表单上的 JQuery Keyup?
我有一个关于 jquery 的 keyup 的快速问题。我在一页上有几个表单输入字段,它们都有不同的 id,但都是两个类之一 - 数字框或文本框,并且都包含在 div id - 内容中。我可以使用这些类或 div 来捕获按键,因为我不知道表单的 id 吗?或者甚至只是捕获页面上所有表单的按键。我不知道我解释得如何:
这将与表单 id=“add”一起使用
$(add).keyup(function () {
value = $(add).val()
alphaCheck()
;
}).keyup();
,但是如果我不知道表单 id,只知道它的类或它包含的 div,我可以使用它吗?比如:
$(.class).keyup(function () {
或者
$(#div).keyup(function () {
我可能解释得很糟糕,但希望有人能给我指出正确的方向。我们将不胜感激,谢谢。
I have a quick question about keyup with jquery. I have several form input fields on one page, they all have different id's but are all either one of two classes - numberbox or textbox and are all contained in a div id - content. Can I use these classes or the div to catch keypresses as I won't know the id of the form? Or even just catch the keypresses for all forms on the page. I don't know how well I explained that:
This will work with a form id= "add"
$(add).keyup(function () {
value = $(add).val()
alphaCheck()
;
}).keyup();
But if I don't know the form id only it's class or the div it is contained it can I use that? So something like:
$(.class).keyup(function () {
or
$(#div).keyup(function () {
I may have explained that really badly, but hopefully someone can point me in the right direction. It would be greatly appreciated, thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来这就是你想要的:
Sounds like this is what you want:
这将为所有表单内的所有输入类型文本添加 keyup 功能。
this will add keyup function on all input type text inside all forms.
将选择所有输入表单元素
Will select all input form elements