My Google-fu pulls up nothing.
When you do this:
var stateObj = { state: "some state" };
history.pushState(stateObj, "page 2", "other.htm");
Is there an associated window callback?
I know that there's this:
window.onpopstate = function() {
}
Which works great for listening to when a user hits the back button. However, I want to listen to any time the URL changes at all, and I'm not sure how to do it.
Is there a global callback for anytime the URL changes?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…