在document.location.href之后创建一个脚本

时间:2013-03-28 22:12:39

标签: javascript location-href

我想在alert("some text")或某种相关代码之后添加document.location.href条消息。

例如:

document.location.href = "http://www.msn.com";
windows.alert("You are now at msn.com");

到目前为止,我使用document.location.href我会自动切换网站,因此其余的代码都没有完成。所以我想知道是否有另一种方法可以在同一页面上切换网站/不在同一页面上,之后放入我的自定义代码,它会相应地执行吗?

1 个答案:

答案 0 :(得分:1)

使用haschange事件:

$(window).on('hashchange', function() {
  // your code here
});

请参阅this post