ajax返回html时如何打开新的窗口显示返回结果

前端之家收集整理的这篇文章主要介绍了ajax返回html时如何打开新的窗口显示返回结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我们打开一个新的空白页面然后写入返回结果

var newwindow = window.open("about:blank");

newwindow.document.write(jsonStr);

另外newwindow可以通过 window,opener访问父窗口

猜你在找的Ajax相关文章