我的 HTML
<div class="item-page">
<div class="Introduction">
<div class="FrTxtLoans">
<h1 class="uppercase"> home-mortgage </h1>
</div>
</div>
<div id="main_content">
<div class="landing_wrapper"> </div>
</div>
</div>
我的问题
我想要做的是移除所有的潜水<div class="landing_wrapper"> </div>
我的脚本
我正在使用
$('.item-page').replaceWith($('.landing_wrapper'));
它,它就像一个魅力。
在这里查看jsFiddle
我的问题
由于我的网站上有 MooTools 和 jQuery 冲突,我jQuery.noConflict();
在网站顶部使用并重命名
$('.item-page').replaceWith($('.landing_wrapper'));
和
jQuery('.item-page').replaceWith($('.landing_wrapper'));
然后 replaceWith 停止工作。jQuery Conflct jsFiddle 在这里
你们能告诉我这个问题吗?