在我将新元素附加到 HTML 页面后,我试图让 prettyPhoto 或其他一些 jquery 插件工作:
具体来说,我有这个:
$(document).ready(function() {
$(window).scroll(function() {
if($(window).scroll) {
$('div#loadMoreComments').show();
$.ajax({
type : "POST",
url : "getvariables.php",
dataType: "json",
data : { webid: $(".posts:last").attr('id') }
}).done(function( msg ) {
jQuery.each(msg , function(index, value){
$("#posts").append(value);
});
// $("#posts").append(msg);
$('div#loadmore').hide();
});
}
});
});
然后我有这样的东西必须触发弹出窗口
<p><a href="#inline-1" rel="ibox">Trigger popup.</a></p>
<div id="inline-1" style="display: none;">
Content to show up after the link is triggered
</div>
将不胜感激任何帮助。谢谢。