gpt4 book ai didi

jquery - $(window) 绑定(bind) hashchange 如何检查部分哈希更改?

转载 作者:行者123 更新时间:2023-12-03 22:44:37 25 4
gpt4 key购买 nike

我正在学习Google Ajax Crawlable

我使用$(window)bind hashchange来控制ajax页面加载。

我的网址如:domain.com/#!/keywords&num=1

有两种变化

  1. domain.com/#!/apple&num=1 => domain.com/#!/apple&num=2

  2. domain.com/#!/apple&num=1 => domain.com/#!/banana&num=1

那么如何检查 $(window) bind hashchange 是否更改了 apple => banana 的哈希部分?谢谢。

$(window).bind('hashchange', function() {
// make a judge like if(){}else{}
});

最佳答案

将哈希值存储在变量中,并在函数末尾更新该变量。考虑:

(function(){
var lastHash = location.hash;
$(window).bind('hashchange', function() {
var newHash = location.hash;
// Do something
var diff = compareHash(newHash, lastHash);
alert("Difference between old and new hash:\n"+diff[0]+"\n\n"+dif[1]);

//At the end of the func:
lastHash = newHash;
});

function compareHash(current, previous){
for(var i=0, len=Math.min(current.length, previous.length); i<len; i++){
if(current.charAt(0) != previous.charAt(0)) break;
}
current = current.substr(i);
previous = previous.substr(i);
for(var i=0, len=Math.min(current.length, previous.length); i<len; i++){
if(current.substr(-1) != previous.substr(-1)) break;
}

//Array: Current = New hash, previous = old hash
return [current, previous];
}
})()

关于jquery - $(window) 绑定(bind) hashchange 如何检查部分哈希更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7699073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com