我尝试在弹出窗口中加载页面链接...添加此脚本后页面底部的页面加载...如何在弹出窗口中打开它?
$('a[rel="ajax:jmodal"]').click(function(event) {
$.ajax({
url: $(this).attr('href'),
success: function(newHTML, textStatus, jqXHR) {
$(newHTML).appendTo('body').jmodal();
},
error: function(jqXHR, textStatus, errorThrown) {
// Handle AJAX errors
}
// More AJAX customization goes here.
});
return false;
});