后台返回完整的HTML页面代码,如何打开展示
Posted missme-lina
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台返回完整的HTML页面代码,如何打开展示相关的知识,希望对你有一定的参考价值。
问题:
后台返回的html代码片段,需要插入html标签中,而返回的整个html文档,则需要重写整个页面。
解决方法:
1.需要一个中转页面,用document.write()方法重写整个页面;
// POST任意内容并跳转
function StandardPost(html) {
localStorage.removeItem('callbackHTML');
localStorage.setItem('callbackHTML',html);
window.location.href = window.location.href.split('/h5/')[0] + '/h5/callBack.html';
}
2.callBack.html?页面:
<script>
document.write(localStorage.getItem('callbackHTML'));
document.close();
</script>
以上是关于后台返回完整的HTML页面代码,如何打开展示的主要内容,如果未能解决你的问题,请参考以下文章
js数字转金额,ajax调用接口,后台返回html(完整页面),打开新窗口并写入html