Check if a DIV element exists by its class in jQuery
本问题已经有最佳答案,请猛点这里访问。
1 |
如何在JavaScript / jQuery中检查最后的
有时,我只有3和其他4.当我只有3时,我想执行一些CSS更改。
您可以查找该对象,然后检查是否找到了该对象:
1 2 3 | if ($(".views-row-4").length) { // at least one element with class"views-row-4" } |
要检查div是否存在,您可以使用以下Jquery代码段。
1 2 3 4 | if( $('.your-class').length ) { //CODE IF DIV EXIST } |
检查容器
1 2 3 | if ($('.view-content > div').length > 3) { // Do your code here } |
我想这可能会对你有所帮助:
JS
1 2 3 4 5 6 | var numClass = $(".views-row").length; if(numClass == 3) { /*Some Change in Your CSS*/ $(".views-row").css("color","red"); } |
试试这个
1 | $('.view-content').children().length |
在jquery中使用
1 2 3 | if($(".views-row").length == 3) { } |