我有以下javascript代码。
var abc = `<div class="hello" data-id="99" data-price="100" data-category="mal">
<div class="hello-category">Hello word</div>
<div class="hello-description"><h2>The best burger in town 12345615</h2></div>
</div>`;
我想得到以下结果:
<div class="hello" data-id="99" data-price="100" data-category="mal">
2条答案
按热度按时间vh0rcniy1#
你可以使用
DOMParser
:lnvxswe22#
您可以将其转换为dom节点,然后对其执行dom操作,如下所示