我有点卡住了。
我正在克隆p-和ul-元素的内容
var abc = $("div p,div ul").clone();
我想用regEx replace()更改输出。
看起来像是
abc.html(abc.html().replace(/myReplace/, '$1'));
我的问题是输出。 没有
abc.html(abc.html().replace(/myReplace/, '$1'));
的html-structur
<p>Content</p>
<ul<
<li>P1</li>
<li>P2</li>
<li>P3</li>
</ul>
html-structur with
abc.html(abc.html().replace(/myReplace/, '$1'));
<p>Content</p>
<ul>
<p>Content</p>
</ul>
如何克隆div并稍后更换一些数字而不再克隆?
答案 0 :(得分:0)
'abc'不是函数。它是第一行中执行的操作生成的jQuery集合。此后使用'abc'不会导致更多克隆。