这是我试图在字符串中定位的 html,并用新的 html 替换整个事物(本身及其子项)。
我想<div id="image_insert">...</div>
用(例如)“测试”替换所有内容。这可能吗?
我试过了:
content.replace('<div id="image_insert">[entire string in here]</div>', 'test');
content.replace(/<div id="image_insert">[entire string in here]</div>/g, 'test');
content.replace(/<div id="image_insert"></div>/g, 'test');
但没有任何效果。有什么想法吗?不太擅长正则表达式。