Dav*_*vid 5 html css ajax jquery
这是我有问题的ajax文件.另请参阅我原来的css问题:.CSS上的当前链接样式仅适用于第1页,不会转移到其他页面
如何修复此Ajax代码以便开始让我将当前链接样式应用于实际当前页面?
$("a.ajax-link").live("click", function(){
$this = $(this);
var link = $this.attr('href');
var current_url = $(location).attr('href');
if( link != current_url && link != '#' ) {
$.ajax({
url:link,
processData:true,
dataType:'html',
success:function(data){
document.title = $(data).filter('title').text();
current_url = link;
if (typeof history.pushState != 'undefined')
history.pushState(data, 'Page', link);
setTimeout(function(){
$('#preloader').delay(50).fadeIn(600);
$('html, body').delay(1000).animate({ scrollTop: 0 },1000);
setTimeout(function(){
$('#ajax-content').html($(data).filter('#ajax-content').html());
$('#ajax-sidebar').html($(data).filter('#ajax-sidebar').html());
$('body').waitForImages({
finished: function() {
Website();
backLoading();
$('.opacity-nav').delay(50).fadeOut(600);
},
waitForAll: true
});
},1000);
},0);
}
});
}
return false;
});
Run Code Online (Sandbox Code Playgroud)
我相信您只需要从current以前的类中删除该类<li class = "current">,然后将其应用到当前<a>标签的父<li>标签。
这可以通过以下方式完成:
$("a.ajax-link").live("click", function(){
$this = $(this);
var link = $this.attr('href');
var current_url = $(location).attr('href');
if( link != current_url && link != '#' ) {
$.ajax({
url:link,
processData:true,
dataType:'html',
success:function(data){
//code to apply current class to current li
if($this.parent("div.logo").length == 0){
$("li.current").removeClass("current");
$this.parent("li").addClass("current");
}
//code ends here
document.title = $(data).filter('title').text();
current_url = link;
if (typeof history.pushState != 'undefined')
history.pushState(data, 'Page', link);
setTimeout(function(){
$('#preloader').delay(50).fadeIn(600);
$('html, body').delay(1000).animate({ scrollTop: 0 },1000);
setTimeout(function(){
$('#ajax-content').html($(data).filter('#ajax-content').html());
$('#ajax-sidebar').html($(data).filter('#ajax-sidebar').html());
$('body').waitForImages({
finished: function() {
Website();
backLoading();
$('.opacity-nav').delay(50).fadeOut(600);
},
waitForAll: true
});
},1000);
},0);
}
});
}
return false;
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
83 次 |
| 最近记录: |