1. 程式人生 > >jquery 如何獲取標籤本身的文字內容,不包含子元素

jquery 如何獲取標籤本身的文字內容,不包含子元素

 <li><a href="http://gz.ihk.cn/esf/houselist/?lp=保利花園" ><strong id="aaaa">保利花園<b>海珠 工業大道中</b></strong></a></li>

本人想要獲取保利花園

實現方法:


一:

var obj = $("#aaaa").clone();
obj.find(':nth-child(n)').remove();
console.log(obj.html());

 

二:

var str = $('#aaaa').contents().filter(function (index, content) {

    return content.nodeType === 3;

}).text();