如何从jquery children方法中获取字符串?

时间:2015-12-16 05:11:08

标签: javascript jquery

$item
<div><p>adfadf</p><p>adfadf</p></div>

$item.children()
[<p>​adfadf​</p>​, <p>​adfadf​</p>​]

$item.children().toString()
"[object Object]"

$item.children().text()
"adfadfadfadf"

$item.children().prop('outerHTML')
"<p>adfadf</p>"

我希望输出为"<p>​adfadf​</p>​<p>​adfadf​</p>"。 “outerHTML”正在工作,但它只返回字符串中的一个节点数据 如何在字符串中获取所有子数据?

1 个答案:

答案 0 :(得分:3)

为什么不简单

$item.html();

var html = "";
$item.children().each( function(){

  html += $( this ).prop('outerHTML');

} );
console.log( html );