首先我们要把
var win = window.open('', '运行窗口');
win.document.open();
win.document.close();
这几段打开窗口的代码放在ajax请求外面,
然后在ajax请求内部加上这段代码:
即可。
success: function (data) { setTimeout(() => { win.document.write(data); }, 50); },