我有很多代码,我想避免在这里发布所有代码,但如果我需要,我会或者我会嘲笑类似的东西。
我的问题是,我有一个隐藏的div,我正在加载页面(使用load())然后取消隐藏(使用fadeIn())。当把它放到这个div时,我将一个空页加载到div中,然后将其淡出。我已经通过在其中放入一个javascript警报来测试空白页面,它确实正在加载,但是我在第一页中加载到div中的Javascript仍在运行。此Javascript现在属于父页面吗?有没有办法卸载它,使其不再运行或可用?我需要稍后使用不同的动态内容再次加载页面,并且仍在运行的Javascript与再次加载时相同的Javascript冲突。再一次。
我希望这种描述是可以理解的。我猜我的问题可能非常简单,并且与我尚未理解的heirarchies有关。
谢谢!
-------------编辑
这是加载页面中的Javascript。它引用的所有类和ID都存在于加载的页面中。 (代码改编自http://www.ilovecolors.com.ar/编码的选项卡行为)
//array to store IDs of our tabs
var tabs = [];
//index for array
var ind = 0;
//store setInterval reference
var inter = 0;
//change tab and highlight current tab title
function change(stringref){
//hide the other tabs
jQuery('.tab:not(#' + stringref + ')').hide();
//show proper tab, catch IE6 bug
if (jQuery.browser.msie && jQuery.browser.version.substr(0,3) == "6.0")
jQuery('.tab#' + stringref).show();
else
jQuery('.tab#' + stringref).fadeIn(200);
//clear highlight from previous tab title
jQuery('.htabs a:not(#' + stringref + 't)').removeClass('select');
//highlight currenttab title
jQuery('.htabs a[href=#' + stringref + ']').addClass('select');
}
function next(){
alert("change");
//call change to display next tab
change(tabs[ind++]);
//if it's the last tab, clear the index
if(ind >= tabs.length)
ind = 0;
}
jQuery(document).ready(function(){
//store all tabs in array
jQuery(".tab").map(function(){
tabs[ind++] = jQuery(this).attr("id");
})
//set index to next element to fade
ind = 1;
//initialize tabs, display the current tab
jQuery(".tab:not(:first)").hide();
jQuery(".tab:first").show();
//highlight the current tab title
jQuery('#' + tabs[0] + 't').addClass('select');
//handler for clicking on tabs
jQuery(".htabs a").click(function(){
//if tab is clicked, stop rotating
clearInterval(inter);
//store reference to clicked tab
stringref = jQuery(this).attr("href").split('#')[1];
//display referenced tab
change(stringref);
return false;
});
//start rotating tabs
inter = setInterval("next()", 3500);
});
答案 0 :(得分:1)
javascript每次都是相同的,只有加载页面的内容发生变化(我假设内容发生了变化,或者每次重新加载它都没有意义);因此我会将文件放在div中加载的文件之外,并在主页面中加载一次。