我想用jquery從dom中提取html字符串。JQuery select元素排除某些子元素
我的網頁看起來像
<html>
<body>
<div id="my-id1">first </div>
<div id="my-id2">second </div>
</body>
</html>
我想獲得一個html字符串看起來像
<html>
<body>
<div id="my-id2">second </div>
</body>
</html>
我知道
$('html').not('#my-id1).html();
不會工作,因爲它會嘗試獲得一個'html'元素並嘗試使用id'my-id1'去除這個元素。
有沒有辦法實現我想要的?
謝謝。
'$( '格')不是('#我-ID1)的.html();'? –
但我想要外部和
標籤了。 –啊,我錯過了,對不起 –