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

时间:2009-09-02 08:51:19

标签: javascript jquery jqmodal

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

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:2)

您可以使用.live进行锚点击事件

再次更新

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

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