jquery onclick 所有输入
我如何从 onClick 的所有输入中删除一个类?我不希望它在单击一个输入时立即删除页面上每个输入的类。我只想将单击的输入从类中删除。但我希望代码适用于每个输入标签...如果这是有意义的...
我很确定 jquery 的“this”将被使用。我只是不知道如何使用它。
我希望它删除特定的类,而不是所有类。像这样的事情。
removeClass("blank_input");
How would i remove a class from all inputs onClick? I don't want it to remove the class of every input on the page at once when one input is click. I just want the clicked input to be removed of the class. But i want the code to apply to every input tag...if that makes sense...
I'm pretty sure jquery's "this" would be used. I just don't know how to use it.
I'd like it to a remove a specific class, not all classes. so something like this.
removeClass("blank_input");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
像这样:
Like this:
是的,你是对的,涉及到
this
。Yep, you're right,
this
is involved.你是说这个吗?
You mean this?