当前位置:首页 > CMS教程 > WordPress > 列表

WordPress全站PJAX代码例子

发布:smiling 来源: PHP粉丝网  添加日期:2015-05-07 16:02:12 浏览: 评论:0 

ajax + pushState的封装,让你可以很方便的使用pushState技术了,今天我给各位使用wordpress的朋友分享一个WordPress全站PJAX代码的例子.

  1. var ajx<em>main = '#main' , // 要替换的主体id,改为你文章部分的容器 
  2. ajx</em>a = 'a' , // a标签,自己添加排除规则 
  3. ajx<em>comt = 'comments' , // 整个评论区的id ,不加# 
  4. ajx</em>submit<em>form = '#comment</em>form' , // 提交按钮所在的表单 
  5. ajx<em>comtlist = '.comment-list' , // 评论列表id或class 
  6. ajx</em>comtpagenav = '.pagenav' , // 评论分页导航的id或class 
  7. ajx<em>comtpagenav</em>a = '.pagenav a' , // 评论分页导航的a标签 
  8. ajx<em>sform = '.inlo-search form' , // 搜索表单form标签 
  9. ajx</em>skey = '.s-key' ; // 搜索表单input标签内的id或class 
  10. function reload_func(){ 
  11.     // 这里放置需要重载的JS或函数 
  12. }<p></p> 
  13. <p>$(function() {<br> 
  14.     a(); //pushState初始化执行一次 
  15. }); 
  16. // 建立锚点函数,用于跳转后的滚动定位,使用这个主要是有侧栏评论带#号时能在请求后定位到该条评论的位置 
  17. function body<em>am(id) {  
  18.     id = isNaN(id) ? $('#' + id).offset().top : id; 
  19.     $("body,html").animate({ 
  20.         scrollTop: id 
  21.     }, 0); 
  22.     return false; 
  23. function to</em>am(url) {  
  24.     var anchor = location.hash.indexOf('#'); // 用indexOf检查location.href中是否含有'#'号,如果没有则返回值为-1 
  25.     anchor = window.location.hash.substring(anchor + 1); 
  26.     body<em>am(anchor); 
  27. // 主页地址,用于下面的提交函数 
  28. var home</em>url = document.location.href.match(/http://([^/]+)//i)[0];  
  29. // 函数: 替换url,用于评论ajax提交 
  30. function replaceUrl(url, domain) { 
  31.     return url.replace(/http://([^/]+)//i, domain); 
  32. // 函数:从封装的Json获取 
  33. function getFormJson(frm) { 
  34.     var o = {}; 
  35.     var a = $(frm).serializeArray(); 
  36.     $.each(a, 
  37.         function() { 
  38.         if (o[this.name] !== undefined) { 
  39.             if (!o[this.name].push) { 
  40.                 o[this.name] = [o[this.name]]; 
  41.             } 
  42.             o[this.name].push(this.value || ''); 
  43.         } else { 
  44.             o[this.name] = this.value || ''
  45.         } 
  46.         }); 
  47.     return o; 
  48. // 函数:更新浏览器历史缓存(用于浏览器后退) 
  49. function l(){ 
  50.     history.replaceState( // 刷新历史点保存的数据,给state填入正确的内容 
  51.     {    url: window.document.location.href, 
  52.         title: window.document.title, 
  53.         html: $(document).find(ajx<em>main).html(), // 抓取主体部分outerHTML用于呈现新的主体。也可以用这句 html: $(ajx</em>main).prop('outerHTML'), 
  54.     }, window.document.title, document.location.href); 
  55. // 函数:页面载入初始一次,解决Chrome浏览器初始载入时产生ajax效果的问题,并且监听前进后退事件 
  56. function a(){ 
  57.     window.addEventListener( 'popstate'function( e ){  //监听浏览器后退事件 
  58.         if( e.state ){ 
  59.             document.title = e.state.title; 
  60.             $(ajx<em>main).html( e.state.html ); //也可以用replaceWith ,最后这个html就是上面替换State后里面的html值<br> 
  61.             // 重载js 
  62.             window.load =  reload</em>func(); // 重载函数 
  63.         } 
  64.     });<br> 
  65. //函数:AJAX核心 
  66. function ajax(reqUrl, msg, method, data) { 
  67.     if (msg == 'pagelink' || msg == 'search') { // 页面、搜索 
  68.         $(ajx<em>main).fadeTo('slow',0.6);  
  69.     } else if ( msg == 'comment' ){ // 评论提交<br> 
  70.         $('#' + ajx</em>comt).fadeTo('slow',0.5);  
  71.     } else if ( msg == 'comtpagenav' ){ //  评论分页时 
  72.         $(ajx<em>comtlist).fadeTo('slow',0.5); 
  73.         $(ajx</em>comtpagenav).fadeTo('slow',0.8); 
  74.     } 
  75.     $.ajax({ 
  76.         url: reqUrl,  
  77.         type: method, 
  78.         data: data, 
  79.         beforeSend : function () { //加载前操作 这个必须放在window.history.pushState()之前,否则会出现逻辑错误。<br> 
  80.             l(); //刷新历史点内容,这个必须放在window.history.pushState()之前,否则会出现逻辑错误。 
  81.         }, 
  82.         success: function(data) { 
  83.             if (msg == 'pagelink' || msg == 'search') { // 又如果msg为 页面 或 搜索—— 【1】 
  84.                 $(ajx<em>main).html($(data).find(ajx</em>main).html()) ; // 替换原#main的内容 
  85.                 $(ajx<em>main).fadeTo('normal',1); 
  86.             } else if (msg == 'comment') { // 又如果msg为 评论回复——————————【2】  
  87.                 $('#' + ajx</em>comt).html($(data).find('#' + ajx<em>comt).html());//  评论列表滑出 
  88.                 $('#' + ajx</em>comt).fadeTo('normal',1);  
  89.                 $("body,html").animate({scrollTop:$('#'+ajx<em>comt).offset().top}, 900); // 定位返回评论ID顶部 
  90.             } else if (msg == 'comtpagenav') { // 又如果msg为 评论分页——【3】 
  91.                 var content = $(data).find(ajx</em>main).html(); 
  92.                 var pagedstring = $(data).find(ajx<em>comtpagenav).html(); 
  93.                 $(ajx</em>main).html(content); 
  94.                 $(ajx<em>comtpagenav).html(pagedstring); 
  95.                 $(ajx</em>comtlist).fadeTo('normal',1); // 评论列表显示 
  96.                 $(ajx<em>comtpagenav).fadeTo('normal',1); // 评论分页显示 
  97.                 $("body,html").animate({scrollTop:$(ajx</em>comtlist).offset().top}, 600);  
  98.             } 
  99.             document.title = $(data).filter("title").text(); // 浏览器标题变更 
  100.             if (msg != 'comment') { // —— 不为后退 也 不为评论回复时 
  101.                 var state = { // 设置state参数 
  102.                     url: reqUrl, 
  103.                     title: $(data).filter("title").text(), 
  104.                     html: $(data).find(ajx<em>main).html(), 
  105.                 }; 
  106.                 // 将当前url和历史url添加到浏览器当中,用于后退。里面三个值分别是: state, title, url 
  107.                 window.history.pushState(state, $(data).filter("title").text(), reqUrl); 
  108.             } 
  109.         }, 
  110.         complete: function() { // ajax完成后加载 
  111.             // 代码重载区 
  112.             if (msg == 'pagelink') { // 若msg为 页面链接 
  113.                 to</em>am(reqUrl) ;// 定位到相应链接位置,这个必须放在window.history...之后执行,否则遇到带#号的链接,再点击其他链接地址栏就无法改变 
  114.             }  
  115.             window.load =  reload<em>func(); // 重载函数 
  116.         }, 
  117.         timeout: 5000, // 超时长度<br> 
  118.         error: function(request) { // 错误时的处理 
  119.             if (msg == msg == 'pagelink' || msg == 'search'){ 
  120.                 location.href = reqUrl;    //直接刷新跳转到请求的页面链接 
  121.             } else if (msg == 'comment') { // 若msg为评论回复 
  122.                 alert($(request.responseText).filter("p").text()); // 弹出警告,这个是必需的,如果删除那么提交错误时就会打开空白页面 
  123.                 $('#' + ajx</em>comt).fadeTo('normal',1);  
  124.             } else if ( msg == 'comtpagenav' ) { 
  125.                 $(ajx<em>comtlist).fadeTo('normal',1); // 警告后评论区显示 
  126.                 $(ajx</em>comtpagenav).fadeTo('normal',1); // 警告后评论区显示 
  127.             } else { 
  128.                 location.href = reqUrl; //页面错误时跳转到请求的页面 
  129.             } 
  130.         }, 
  131.     }); 
  132. //页面ajax 
  133. $('body').on("click",ajx<em>a, 
  134. function() { 
  135.     ajax($(this).attr("href"), 'pagelink'); 
  136.     return false; 
  137. }); 
  138. //评论ajax 
  139. $('body').on('submit',ajx</em>submit<em>form,  
  140. function() { 
  141.     ajax(replaceUrl(this.action, home</em>url), 'comment''POST', getFormJson(this)); 
  142.     return false; 
  143. }); 
  144. //搜索ajax 
  145. $('body').on('submit',ajx<em>sform,  
  146. function() { 
  147.     ajax(this.action + '?s=' + $(this).find(ajx</em>skey).val(), 'search');  
  148.     return false; 
  149. }); 
  150. //评论分页ajax--phpfensi.com
  151. $('body').on("click",ajx<em>comtpagenav</em>a, 
  152. function() { 
  153.     ajax($(this).attr("href"), 'comtpagenav'); 
  154.     return false; 
  155. });</p>

Tags: WordPress全站 PJAX

分享到: