- div显示返回html
<!-- 用来放置后台返回的html页面 --> <div id="showHtml"></div>
$.ajax({ type: "POST", url: "/system/htmlDemo", data: $("#form").serialize(), success: function(response) { // 将数据追加到div中显示 $("#showHtml").append(response.data); } });
- 新开窗口显示页面
$.ajax({ type: "POST", url: "/system/htmlDemo", data: $("#form").serialize(), success: function(response) { //新打开一个页面(about:blank是打开浏览器空白页的命令), _blank:打开一个新的窗口 var newPage = window.open("about:blank", "_blank"); //将后台传过来的html页面写到新打开的浏览器窗口中显示 obj.document.write(response.data); } });