我想在HTML註釋之前插入div與iframe(它是這個位置唯一的唯一元素)。在HTML註釋之前插入DIV元素
所以我有這樣的評論:<!-- Comment -->
,我想在評論之前,這樣的插入代碼:
<div id="test">
<noscript>
<iframe src="https://test.net" frameborder="0" scrolling="no" width="742" height="92"></iframe>
</noscript>
</div>
我試着像.append()的方法和前置(),但沒有成功。
結果應該是:
<div id="test">
<noscript>
<iframe src="https://test.net" frameborder="0" scrolling="no" width="742" height="92"></iframe>
</noscript>
</div>
<!-- Comment -->
任何幫助,非常感謝!
@Duane of course您可以選擇一個評論! – void