Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个跨度节点,需要在某个单词之后插入换行符。每当我使用氚进入 inner() 或 text() 范围时,我无法弄清楚如何以浏览器将解释为新节点而不是文本的方式注入中断。我不想将前半部分作为 var 并将它们放在一个新节点中,有没有更简单的方法可以做到这一点?
此代码应该可以工作:您可能还想包装
$("xpath") { inner() { replace(/(regex)/, '<br /> $1') # This will work also: # replace(/(regex)/, '<span class="mw-block">$1</span>' } }