jquery.address:使用 $.address.queryString() 时 $.address.change() 运行两次
使用 $.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');
它会提醒 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');
it alerts the user_id twice
however, shouldn't it only alert once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可能会在页面加载时发出警报(地址已更改......对吗?),然后在您更改地址时再次发出警报。
It's probably alerting when the page loads (address changed...right?), and then again when YOU change the address.
如果没有更多上下文,很难判断这是否有意义......但是您是否应该在 DOM 准备好后调用您的函数,如下所示:
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: