💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 替换 replaceWith(content | fn) 概述:将所有匹配的元素替换成指定的 HTML 或 DOM 元素。 ~~~ // 把所有的段落标记替换成加粗的标记。 $("p").replaceWith("<b>Paragraph. </b>"); // 用第一段替换第三段,移动到目标位置来替换 $('.third').replaceWith($('.first')); ~~~ ## 替换全部 replaceAll(selector) 概述:用匹配的元素替换掉所有 selector 匹配到的元素。 ~~~ $("<b>Paragraph. </b>").replaceAll("p"); // 把所有的段落标记替换成加粗标记 ~~~