如何使用JQuery在页面上找到特定的类

前端之家收集整理的这篇文章主要介绍了如何使用JQuery在页面上找到特定的类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想写JQuery,它会发现页面上是否存在Class =“Mandatory”,如果有任何元素有这个类,那么只执行某些操作。

谢谢

解决方法

当您使用jQuery搜索时,请检查您打了多少元素
if ($(".Mandatory").length > 0) {
    // Do stuff with $(".Mandatory")
    $(".Mandatory").each(function() {
        // "this" points to current item in looping through all elements with
        // class="Mandatory"
        $(this).doSomejQueryWithElement();
    }); 
}

编辑
如果你想做这个检查你的提交按钮点击,只需点击后做那个检查:

$("input[type='submit']").click(function() {
    if ($(".Mandatory").length > 0) {
        // Do some code here
    }
});
原文链接:https://www.f2er.com/jquery/181770.html

猜你在找的jQuery相关文章