根据jquery中的属性添加一个类

发布于 2024-08-26 12:00:55 字数 424 浏览 9 评论 0原文

我试图根据类型向某些输入元素添加一个类,因此如果它是 type='text' 我想添加 .txt 类,如果它是typt='button' 我想添加 .btn 类。我尝试了一些东西,但很幸运,它为所有这些东西添加了 .text:

        var text_type = $('#right input').attr('type');


        if(text_type=='text'){
            $('#right input').addClass('text');
        }
        else if(text_type=='button'){
            $('#right input').addClass('btn');
        };

我如何实现这一点? 提前致谢。

毛罗

I'm trying to add a class to some input elements depending on the type, so if it's type='text' iI want to add .txt class and if it's typt='button' I want to add .btn class. I tried some stuff but so luck, it adds .text to all of them:

        var text_type = $('#right input').attr('type');


        if(text_type=='text'){
            $('#right input').addClass('text');
        }
        else if(text_type=='button'){
            $('#right input').addClass('btn');
        };

How do I achieve that?
Thanks in advance.

Mauro

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暖阳 2024-09-02 12:00:55
$('#right input[type="text"]').addClass('text');
$('#right input[type="button"]').addClass('btn');

属性等于选择器

$('#right input[type="text"]').addClass('text');
$('#right input[type="button"]').addClass('btn');

Attribute equals selector.

只为一人 2024-09-02 12:00:55

我认为您想要做的事情是这样的,即您将类添加到具有文本类型的所有输入上。

$("input[type='text']").addClass("text");

I think what you want to do is something like this were you add the class onto all inputs which have a type of text.

$("input[type='text']").addClass("text");

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