jquery onclick 所有输入

发布于 2024-11-18 17:12:29 字数 236 浏览 4 评论 0原文

我如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

在梵高的星空下 2024-11-25 17:12:29
$("input").click(function(){
   $(this).removeClass("blank_input");
});
$("input").click(function(){
   $(this).removeClass("blank_input");
});
万水千山粽是情ミ 2024-11-25 17:12:29

像这样:

$('input').click(function(){
    $(this).removeClass('blank_input');
})

Like this:

$('input').click(function(){
    $(this).removeClass('blank_input');
})
捎一片雪花 2024-11-25 17:12:29
$("input").click(function() {
    $(this).removeClass("blank_input"); 
});

是的,你是对的,涉及到this

$("input").click(function() {
    $(this).removeClass("blank_input"); 
});

Yep, you're right, this is involved.

你怎么敢 2024-11-25 17:12:29

你是说这个吗?

$('input').click(function() {
      $(this).removeClass("class_name");
});

You mean this?

$('input').click(function() {
      $(this).removeClass("class_name");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文