jQuery jqModal 确认对话框回调问题

发布于 2024-09-08 15:39:52 字数 1010 浏览 13 评论 0原文

使用 jqModal 网站 FUN 部分的代码覆盖:
http://dev.iceburg.net/jquery/jqModal/#examples< br> (我编辑了代码以使用回调函数)

function confirm(msg,callback) {
  $('#confirm')
    .jqmShow()
    .find('p.jqmConfirmMsg')
      .html(msg)
    .end()
    .find(':submit:visible')
      .click(function(){
        if(this.value == 'yes')
          (typeof callback == 'string') ?
            window.location.href = callback :
            callback();
        $('#confirm').jqmHide();
      });
}

$().ready(function() {
  $('#confirm').jqm({overlay: 88, modal: true, trigger: false});

  // trigger a confirm whenever links of class alert are pressed.
  $('a.confirm').click(function() { 
    confirm('About to visit: '+this.href+' !',callbackfunction); 
    return false;
  });
});

function callbackfunction()
{
 console.log("callback triggered");
}

问题:每次调用确认函数时,回调都会逐渐触发,因此当我第二次单击时,处理程序会执行两次,第三次, 3次以此类推。

Using the code from the jqModal website, section FUN! Overrides:
http://dev.iceburg.net/jquery/jqModal/#examples
(I edited the code to make use of a callback function)

function confirm(msg,callback) {
  $('#confirm')
    .jqmShow()
    .find('p.jqmConfirmMsg')
      .html(msg)
    .end()
    .find(':submit:visible')
      .click(function(){
        if(this.value == 'yes')
          (typeof callback == 'string') ?
            window.location.href = callback :
            callback();
        $('#confirm').jqmHide();
      });
}

$().ready(function() {
  $('#confirm').jqm({overlay: 88, modal: true, trigger: false});

  // trigger a confirm whenever links of class alert are pressed.
  $('a.confirm').click(function() { 
    confirm('About to visit: '+this.href+' !',callbackfunction); 
    return false;
  });
});

function callbackfunction()
{
 console.log("callback triggered");
}

The problem: each time when the confirm function is called, the callback gets triggered incrementally, so when I click the 2nd time, the handler gets executed 2 times, the 3th time, 3 times and so on.

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

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

发布评论

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

评论(2

睫毛上残留的泪 2024-09-15 15:39:52

发生这种情况是因为每次调用确认函数时,都会添加一个新的“单击”事件处理程序。

This happens because each time you call the confirm function, you add a new 'click' event handler.

温折酒 2024-09-15 15:39:52

解决方案只是在绑定新的、更新的回调之前取消绑定确认框中的单击事件。在下面的示例中,请注意在绑定新回调之前的确认()函数以及任何绑定的点击事件的取消绑定。也许他的示例代码确实应该是:

function confirm(msg,callback) {
  $('#confirm')
    .jqmShow()
    .find('p.jqmConfirmMsg')
      .html(msg)
    .end()
    .find(':submit:visible')
    .unbind('click')
      .click(function(){
        if(this.value == 'yes')
          (typeof callback == 'string') ?
            window.location.href = callback :
            callback();
        $('#confirm').jqmHide();
      });
}

自您最初的帖子以来已经过去了一段时间,但也许这对将来的某人有用。 jqModal 确实非常棒。

The solution is simply unbinding the click event in the confirm box before binding the new, updated callback. In my example below, note the confirm() function and the unbind of any bound click events before binding the new callback. Perhaps his example code should really be:

function confirm(msg,callback) {
  $('#confirm')
    .jqmShow()
    .find('p.jqmConfirmMsg')
      .html(msg)
    .end()
    .find(':submit:visible')
    .unbind('click')
      .click(function(){
        if(this.value == 'yes')
          (typeof callback == 'string') ?
            window.location.href = callback :
            callback();
        $('#confirm').jqmHide();
      });
}

Some time has past since your original post but perhaps this can be of use to someone in the future. jqModal is really quite great.

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