我有一个Ajax的网站,Ajax的内容来自其他网页,例如about.html,contact.html。 ajax从一个叫做#main-content的div中获取内容。但是在ajax调用之后,我的其他脚本都破了。比如tinyscrollbar()插件和一些其他自定义函数。
我搜索了大约4天,发现我的问题是更改DOM的AJAX请求,并且由于之前加载了脚本,因此在ajax调用之后它不会运行。
如果我是对的,我需要解决这个问题? .live()或.livequery()插件?
我正在使用的所有JS都在:
var $dd = $('.projects dl').find('dd'), $defBox = $('#def-box');
$defBox.hide();
$('.projects').hover(function(){
$defBox.stop(true, true)
.fadeToggle(1000)
.html('<p>Hover The links to see a description</p>');
});
$dd.hide();
$('.projects dl dt').hover(function(){
var $data = $(this).next('dd').html();
$defBox.html($data);
});
// Ajax Stuff
// Check for hash value in URL
var hash = window.location.hash.substr(1);
// Check to ensure that a link with href == hash is on the page
if ($('a[href="' + hash + '"]').length) {
// Load the page.
var toLoad = hash + '.php #main-content';
$('#main-content').load(toLoad);
}
$("nav ul li a").click(function(){
var goingTo = $(this).attr('href');
goingTo = goingTo.substring(goingTo.lastIndexOf('/') + 1);
if (window.location.hash.substring(1) === goingTo) return false;
var toLoad = $(this).attr('href')+' #main-content',
$content = $('#main-content'), $loadimg = $('#load');
$content.fadeOut('fast',loadContent);
$loadimg.remove();
$content.append('<span id="load"></span>');
$loadimg.fadeIn('slow');
window.location.hash = goingTo;
function loadContent() {
$content.load(toLoad,'',showNewContent)
}
function showNewContent() {
$content.fadeIn('fast',hideLoader);
}
function hideLoader() {
$loadimg.fadeOut('fast');
}
return false;
});
答案 0 :(得分:7)
对于插件,不是真的。您可以在$.load
的完整回调中重新启动插件:
$('#main-content').load(toLoad, function() {
$("#foo").tinyscrollbar();
$("#bar").facebox();
// etc
});
对于事件处理程序,您可以在回调中重新绑定它们,如上例所示,或者使用.live
或.delegate
(您似乎已经使用过)以确保绑定在将来持续存在(ajax替换)元素,例如:
$('.projects dl').delegate("dt", "hover", function() {
...
}, function() {
...
});
或:
$('.projects dl dt').live("hover", function() {
...
}, function() {
...
});