這篇文章帶給大家的內容是關於單頁情況下laypage開啟時hash的優化方法(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
單一頁面的時候,laypage開啟hash會沖掉之前的hash
解決思路,調整hash的跳轉方式以及curr的計算方式
之後的hash會是這樣#/data/tiebaluntan#!page=98
修改地方有兩個:
laypage.js中
//渲染分页 Class.prototype.render = function(load){ var that = this ,config = that.config ,type = that.type() ,view = that.view(); if(type === 2){ config.elem && (config.elem.innerHTML = view); } else if(type === 3){ config.elem.html(view); } else { if(doc[id](config.elem)){ doc[id](config.elem).innerHTML = view; } } config.jump && config.jump(config, load); var elem = doc[id]('layui-laypage-' + config.index); that.jump(elem); if(config.hash && !load){ // location.hash = '!'+ config.hash +'='+ config.curr; // 屏蔽掉该行,修改为下一行 location.hash = location.hash.substr(0,location.hash.indexOf("#!")==-1 ? 99999:location.hash.indexOf("#!")) + '#!'+ config.hash +'='+ config.curr; } that.skip(elem); };
另外就是page的渲染中的curr計算,不能根據官方的教程,需要按照如下:
//开启HASH laypage.render({ elem: 'test-laypage-demo5' ,count: 500 //,curr: location.hash.replace('#!fenye=', '') //获取hash值为fenye的当前页 ,curr: location.hash.indexOf("#!")==-1 ? "" : location.hash.substr(location.hash.indexOf("#!"),).replace('#!fenye=', '')//获取hash值为fenye的当前页 ,hash: 'fenye' //自定义hash值 });
相關推薦:
layui form表單的動態渲染與vue.js之間的衝突解決方法(附程式碼)
以上是單頁面情況下laypage開啟時hash的優化方法(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!