我一直遇到问题,在客户端代码动态添加的链接上显示jqmodal模式对话框。我已通过以下网址演示了该问题:http://www.neil-burton.co.uk/jqmodaltest/index.htm
任何帮助将不胜感激
答案 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);
});