jQuery重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery重定向相关的知识,希望对你有一定的参考价值。
If you want to simulate someone clicking on a link, use location.href. If you want to simulate an HTTP redirect, use location.replace.
// simulates similar behavior as an HTTP redirect window.location.replace("http://snipplr.com"); // simulates similar behavior as clicking on a link window.location.href = "http://snipplr.com";
以上是关于jQuery重定向的主要内容,如果未能解决你的问题,请参考以下文章