P粉1484347422023-08-25 09:11:57
您可以使用下列方法來取得第一個子節點的nodeValue
$('.title')[0].childNodes[0].nodeValue#
P粉2391642342023-08-25 00:26:46
var text = $(".title").contents().filter(function() { return this.nodeType == Node.TEXT_NODE; }).text();
這會取得所選元素的內容
,並對其套用篩選器函數。過濾器函數僅傳回文字節點(即那些具有 nodeType == Node.TEXT_NODE
的節點)。