我正在使用wrapInner
功能,但这些会再次触发我的jQuery(document).ready
事件。
这是正常行为吗? 如何避免这种情况?
更新
miscellaneous : function(){
$('#nav .active a').bind('click',function(){ return false });
$('.type-a, .type-b, .type-c, .type-d, .type-e').append('<div class="type"></div>');
//$('body').wrapInner('<div id="root"></div>');
$('#content').wrap('<div id="content-wrapper"></div>');
$('#filter .time > li').append('<span class="arrow"></span>');
$('#filter .category li a').wrapInner('<span></span>');
$('#filter .time > li > ul').hide();
$('#filter .time > li').live('mouseenter',function(){
if($(this).children('ul').css('display') != 'block'){
$(this).children('ul').fadeIn('fast',function(){
$(this).css({'display':'block'});
});
}
}).live('mouseleave',function(){
if($(this).children('ul').css('display') != 'none'){
$(this).children('ul').fadeOut('fast',function(){
$(this).css({'display':'none'});
});
}
});
}
如果我取消注释第4行,则会显示以下警告两次。 在评论的行中,警报仅显示一次。
jQuery(document).ready(function($) {
alert('in ready');
});
答案 0 :(得分:4)
由于你的代码位于正文的子元素中,一旦你用另一个div包装正文的内容,就会重新执行正文中的脚本。在使用wrapInner之前,只需删除这些脚本。删除脚本不会影响页面的功能,除非不会导致警报发生两次。
$("body").find("script").remove().end().wrapInner("<div id='root' />");