jquery.address:使用 $.address.queryString() 时 $.address.change() 运行两次

发布于 2024-11-19 17:45:14 字数 494 浏览 0 评论 0原文

使用 $.address.queryString() 时,$.address.change() 运行两次

,如果 URL 为:

www.example.com

并且我运行以下代码:

$.address.change(function(event)
{    
    if(event.parameters['user_id'])
    {
        alert(event.parameters['user_id'])
    }       
});
$.address.queryString('user_id=902715614&user_name=James');

Live example

它会提醒 user_id 两次

,但是,它不应该只提醒一次吗?

$.address.change() runs twice when using $.address.queryString()

if have a url of:

www.example.com

and i run the following code:

$.address.change(function(event)
{    
    if(event.parameters['user_id'])
    {
        alert(event.parameters['user_id'])
    }       
});
$.address.queryString('user_id=902715614&user_name=James');

Live example

it alerts the user_id twice

however, shouldn't it only alert once?

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

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

发布评论

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

评论(2

夏日浅笑〃 2024-11-26 17:45:15

它可能会在页面加载时发出警报(地址已更改......对吗?),然后在您更改地址时再次发出警报。

It's probably alerting when the page loads (address changed...right?), and then again when YOU change the address.

神爱温柔 2024-11-26 17:45:15

如果没有更多上下文,很难判断这是否有意义......但是您是否应该在 DOM 准备好后调用您的函数,如下所示:

$(document).ready(function () {
  $.address.queryString('user_id=902715614&user_name=James');
});

Without more context it's hard to tell if this makes sense... but should you be calling your function after the DOM is ready like this:

$(document).ready(function () {
  $.address.queryString('user_id=902715614&user_name=James');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文