$(function(){
var ajaxignore_string = new String('/#, .pdf, .zip, .rar, .jpg, .gif, .png, .jpeg, .bmp, /admin, /rss, .xml'); //不需要加载AJAX的后缀
var ajaxcontent = 'whole'; // 为Ajax加载部分的id,一般的主题主体都是content
var ajaxignore = ajaxignore_string.split(', ');// 字符分割
var ajaxloading_code ="<div class='donghua'></div>"; //加载动画
var ajaxloading_error_code = '<div class="errajax">AJAX加载失败,可能是网络原因,请刷新重试!</div>'; // 加载失败HTML
var ajaxreloadDocumentReady = false; //重新加载开关
var ajaxtrack_analytics = false
var ajaxscroll_top = true; // 定位返回锚点
var ajaxisLoad = false; // ajax加载开关
var ajaxstarted = false; // ajax开始确认
var ajaxsearch_class="searchform"; // 搜索表单的class,同样,一般都是类似于searchform这种的
var ajaxsearinputid="searchone"; //搜索input的id
var ajaxsearchPath ="";
// 初始化载入
$(document).ready(function() {
ajaxloadPageInit("");
});
// 函数:搜索提交
function submitSearch(param){
if (!ajaxisLoad){
ajaxloadPage(ajaxsearchPath, 0, param);
}
}
// 函数:过滤链接
function ajaxcheck_ignore(url) {
for (var i in ajaxignore) {
if (url.indexOf(ajaxignore[i]) >= 0) {
return false;
}
}
return true;
}
// 建立锚点函数,用于跳转后的滚动定位,使用这个主要是有侧栏评论带#号时能在请求后定位到该条评论的位置
function body_am(id) {
id = $('#' + id).offset().top+200;
$("body,html").animate({scrollTop:id},800);
return false;
}
function to_am(url) {
var anchor = location.hash.indexOf('#'); // 用indexOf检查location.href中是否含有'#'号,如果没有则返回值为-1
anchor = window.location.hash.substring(anchor + 1);
body_am(anchor);
}
// 函数:需要重新加载的js,比如灯箱、代码高亮等
function ajaxreload_code() {
//这里是代码重载区。比如灯箱阿。代码高亮啊什么什么的。
}
// 函数:导航菜单高亮切换
function ajaxclick_code(thiss) {
$('#cssmenu ul li').each(function() { // 设置成你的菜单列表li
$(this).removeClass('active');
});
$(thiss).parents('li').addClass('active');
}
// 核心函数:ajax加载
function ajaxloadPage(url, push, getData){
if (!ajaxisLoad){
if (ajaxscroll_top == true) { // 返回顶部
$('html,body').animate({scrollTop: 0}, 500); // 返回位置和速度
}
ajaxisLoad = true; // 开启
ajaxstarted = true; // 开始
nohttp = url.replace("http://","").replace("https://",""); // 去除https或http
firstsla = nohttp.indexOf("/"); // 是否存在 / 符号
pathpos = url.indexOf(nohttp); // 是否存在完整链接
path = url.substring(pathpos + firstsla); // 切割提取字符串
if (push != 1) {
if (typeof window.history.pushState == "function") { // 浏览器地址变更
var stateObj = { foo: 1000 + Math.random()*1001 };
history.pushState(stateObj, "页面加载中...", path);
} else {
}
}
if (!$('#' + ajaxcontent)) {alert("网站没有id为"+ajaxcontent+"的对象,ajax异常!");}
$('#' + ajaxcontent).append(ajaxloading_code);
$("body").attr("class","mn");
$.ajax({
type: "GET",
url: url,
//设为false时,ajax分页链接会出现错误
data: getData,
cache: true,
dataType: "html",
success: function(data) { // 加载成功后
ajaxisLoad = false; // 关闭ajax
datax = data.split('<title>');
titlesx = data.split('</title>');
if (datax.length == 2 || titlesx.length == 2) { // 浏览器标题变更
data = data.split('<title>')[1];
titles = data.split('</title>')[0];
$(document).attr('title', ($("<div/>").html(titles).text()));
} else {
}
if (ajaxtrack_analytics == true) {
if(typeof _gaq != "undefined") {
if (typeof getData == "undefined") {
getData = "";
} else {
getData = "?" + getData;
}
_gaq.push(['_trackPageview', path + getData]);
}
}
data = data.split('id="' + ajaxcontent + '"')[1];
data = data.substring(data.indexOf('>') + 1);
var depth = 1;
var output = '';
while(depth > 0) {
temp = data.split('</div>')[0];
i = 0;
pos = temp.indexOf("<div");
while (pos != -1) {
i++;
pos = temp.indexOf("<div", pos + 1);
}
depth=depth+i-1;
output=output+data.split('</div>')[0] + '</div>'; //分割字符串
data = data.substring(data.indexOf('</div>') + 6);
}
$("body").removeAttr("class");
$("body").removeAttr("style");
document.getElementById(ajaxcontent).innerHTML = output;
$('#' + ajaxcontent).css("position", "absolute");
$('#' + ajaxcontent).css("left", "20000px");
$('#' + ajaxcontent).show();
ajaxloadPageInit("#" + ajaxcontent + " ");
if (ajaxreloadDocumentReady == true) {
$(document).trigger("ready");
}
try {
ajaxreload_code();
to_am(url);
} catch(err) {
}
$('#' + ajaxcontent).hide();
$('#' + ajaxcontent).css("position", "");
$('#' + ajaxcontent).css("left", "");
$('#' + ajaxcontent).fadeTo("slow",1, function() {});
},
error: function(jqXHR, textStatus, errorThrown) { // 加载错误时提示
ajaxisLoad = false;
document.title = "Error loading requested page!";
$("body").removeAttr("class");
document.getElementById(ajaxcontent).innerHTML = ajaxloading_error_code;
}
});
}
}
// 后退时页面效果,用popstate
window.onpopstate = function(event) {
if (ajaxstarted === true && ajaxcheck_ignore(document.location.toString()) == true) {
ajaxloadPage(document.location.toString(),1);
}
};
//函数: ajax加载
function ajaxloadPageInit(scope){
$(scope + "a").click(function(event){ // 点击事件绑定a标签
if (this.href.indexOf(ajaxhome) >= 0 && ajaxcheck_ignore(this.href) == true){
event.preventDefault();
this.blur();
var caption = this.title || this.name || "";
var group = this.rel || false;
try {
ajaxclick_code(this);
} catch(err) {
}
ajaxloadPage(this.href); // 核心函数
}
});
$('.' + ajaxsearch_class).each(function(index) { // 搜索ajax
if ($(this).attr("action")) {
$("#"+ajaxsearinputid+"").change(function () {
ajaxsearchPath ="index.php?keyword="+$("#searchone").val()+"";});
$(this).submit(function() {
submitSearch($(this).serialize());
return false;
});
}
});
}
});
全站AJAX教程
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 北京时间10月2日,据《圣何塞水星新闻》报道,昨天勇士与掘金的季前赛开始之前,4届最佳防守球员本-华莱士把上赛季的...