我处理一些生成的跨度,我想找到其中一个不包含任何文本。
标记是:
<span id="layer6"> <span class="drag col"> Some text</span> <span class="drag col"> More text</span> <span class="drag col"> </span> <span class="drag col"> I also have text</span> </span>
我可以得到那些有“一些文本”与这个代码,但我不能得到空的:
if ($('#layer6 > span.col:contains("some text")').length > 0) { alert ("I have text"); }
如何获得空的?我想在使用.length做它,但我没有管理。
解决方法
$("span.col").each(function(){ if (!$(this).text().trim().length) { $(this).addClass("foo"); } });
显然,而不是添加一个类,你可以做你喜欢,返回对象等