0
html = "<p>title</p><div><ul class='www'></ul>something</div>";
$html = $(html);
$html.filter('p').replaceWith('<h2>' + $html.filter('p').html() + '</h2>'); //not working
container = $('<div></div>');
html = container.html($html)[0].innerHTML; //trying to output "<h2>title</h2><div><ul class='www'></ul>something</div>"
在非DOM環境中,我試圖修改一個HTML字符串,替換其中的一個成員。 jQuery的replaceWith
不起作用,因爲它是針對DOM的。我該怎麼做呢?替換jQuery非DOM對象中的元素之一