jQuery 重新加载实时页面并停止?

发布于 2024-11-27 19:36:12 字数 778 浏览 1 评论 0原文

我正在检查 url 是否包含单词“rewrite”,如果包含,我将添加一个 cookie。但是,我想在添加cookie后重新加载页面,然后停止重新加载页面。目前,它不断重新加载页面,因为它看到 URL 并且包含单词“重写”。 jQuery 中是否有类似 Do OnceStop() 方法?也许我必须使用 .live()?

$(document).ready(function () {
    if ($.cookie('logged_in') == null) {
        Do Nothing
        } else {
        Do Something
    }
});

$(document).ready(function () {                     
    if (/rewrite/.test(self.location.href)) {
        $.cookie("logged_in", 1, { expires : 1 });
        location.reload(); stop();
    }
});

已解决

if (/rewrite/.test(self.location.href)) {
    if ($.cookie('logged_in') == null) {
        $.cookie("logged_in", 1, { expires : 1 });
        location.reload();
}

I am checking to see if a url contains the word "rewrite", if it does I am adding a cookie. However, I want to reload the page after the cookie is added, then stop reloading the page. Currently it keeps reloading the page because it sees the url and it contains the word "rewrite". Is there like a Do Once in jQuery or a Stop() method? Perhpas I have to use .live()?

$(document).ready(function () {
    if ($.cookie('logged_in') == null) {
        Do Nothing
        } else {
        Do Something
    }
});

$(document).ready(function () {                     
    if (/rewrite/.test(self.location.href)) {
        $.cookie("logged_in", 1, { expires : 1 });
        location.reload(); stop();
    }
});

SOLVED

if (/rewrite/.test(self.location.href)) {
    if ($.cookie('logged_in') == null) {
        $.cookie("logged_in", 1, { expires : 1 });
        location.reload();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与他有关 2024-12-04 19:36:12

检查 URL 和 cookie 中的重写情况,如果两者都存在,那么您就知道您已经完成了重新加载?

Check for rewrite in the URL AND the cookie, if both then you know you've already done the reload?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文