DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery提取元素裡的純文本不包含span等裡的內容
jquery提取元素裡的純文本不包含span等裡的內容
編輯:JQuery特效代碼     
. 代碼如下:
var text = '';
$('div').contents().each(function(){
if(this.nodeType === 3){
text += this.wholeText;
}
});

nodeType
元素element 1 屬性attr 2 文本text 3 注釋comments 8 文檔document 9
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved