无法将 jQuery jqModal 分配给动态添加的链接

发布于 2024-08-03 13:00:33 字数 225 浏览 4 评论 0原文

我在让 jqmodal 模式对话框显示在客户端代码动态添加的链接上时遇到问题。我已经在以下 URL 演示了该问题: http://www.neil -burton.co.uk/jqmodaltest/index.htm

任何帮助将不胜感激

I've been having problems getting jqmodal modal dialogs to display on links added dynamically by client side code. I've demonstrated the problem at the following URL: http://www.neil-burton.co.uk/jqmodaltest/index.htm

Any help would be appreciated

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

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

发布评论

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

评论(1

梦在夏天 2024-08-10 13:00:33

您可以将 .live 用于锚点点击事件

再次更新

  $('#dialog').jqm({ajax:'@rel'});

  // open the modal whenever anchor links on the page are clicked
  $('a.someClass').live('click',function(){
      $('#dialog').jqmShow(this);
  });

You can use .live for the anchor click events

UPDATED AGAIN

  $('#dialog').jqm({ajax:'@rel'});

  // open the modal whenever anchor links on the page are clicked
  $('a.someClass').live('click',function(){
      $('#dialog').jqmShow(this);
  });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文