AJAX加载在popUp中的同一页面中

时间:2016-05-10 12:11:39

标签: php html ajax

我尝试在弹出窗口中加载页面链接...添加此脚本后页面底部的页面加载...如何在弹出窗口中打开它?

$('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;
});

1 个答案:

答案 0 :(得分:-2)

为什么不尝试使用Bootstrap对话框。看到 Link