比如我要找style="display:inline" 的div,还有要找 class="T_div"的div,应该怎么写?谢谢~
$("div[style='display:inline']")
自己查Jquery手册吧,我也很多时候会把Jquery忘记,但是用的时候查下手册就行了。
查CLASS $(".T_div")
$("div[class='T_div']")
和
$("div[style]").filter(function(){
if($(this).css("display")=="inline")
return $(this);
})
$('div[style*="display: inline"],div.T_div').each(function () {
var $this=$(this); .......
});
$(".class")