标签:col hash image push ima span index ash scroll
$(‘#XX‘).on(‘click‘,function(){ window.history.pushState({}, "", ‘/2017/10/zk#tonghu‘); })
/2017/10/zk#tonghu中
/2017/10/zk是地址
#tonghu是你后面加的参数
如果返回上一步就用
window.onpopstate = function() { //监听上一步 下一步操作 然后执行函数 checkLocation(); }; function checkLocation(){ if(location.hash.indexOf("#tonghu")>-1){ //如果是tonghu怎么处理 // $(‘body,html‘).animate({scrollTop:0},500); }else{ //如果为空怎么处理 } }
标签:col hash image push ima span index ash scroll
原文地址:http://www.cnblogs.com/Amcc/p/7724680.html