我有动态jQuery
添加的功能,a
当我想将此元素用作模式时,我不能,没有任何反应。
当我使用一切添加相同的元素时,php
一切正常。
我的猜测是jQuery.modal
看不到这个元素,有没有办法解决这个问题?
我的功能如下所示:
$.each(respJSON, function(){
$('#poll-questions').append(
$('<li>').append(
$('<a>').attr('href', prefix + this.id).attr('class', 'modal')
.attr('rel', '{handler: "iframe", size:{x:600, y:500}}')
.append($('<span>').append(this.question)
)));
});