我在上一篇文章中有一个以下问题。
我想将每个存储node
为full html markup
.
数组data
应该类似于
['<em>test</em>', 'here for the testing purpose',
'second line', '<strong>texts</strong>', 'here']
我现在拥有的代码:
if(this.nodeType === 3) { // Will only select element nodes
data.push($(this).text());
}else if(this.nodeType === 1){
data.push($(this).html());
}
但它只存储
['test', 'here for the testing purpose','texts','here']
是否也可以存储html markup
?
非常感谢!