欢迎各位兄弟 发布技术文章
这里的技术是共享的
$(".aaa:hidden")
$('div:visible').index()
$("#test img[style*='display:none']").size();
if ($("#addinfo").is(':visible'))
$('img:hidden').length
$(
function
(){
//取出所有div,并遍历
$(
"div"
).each(){
//判断每一个div,其css中display是否为block
if
($(
this
).css(
"display"
)==
"block"
){
alert(
'您想要的元素'
);
}
};
});
1 $("#test img").each(function(index){ 2 if($(this).css('display')=='block'){ 3 //alert(index);打印个数 4 $(this).css()//设置样式 5 } 6 })