jQuery - 将响应字符串加载为新页面

时间:2014-09-03 10:22:18

标签: jquery html string load

我在服务器端调用perl脚本来构建新页面的整个html代码,并且我想在脚本完成时加载这个新页面。这是我试过的代码:

$j.post(url, {
    type: type,
    razname: raz,
    releasedocs: releases
},
function (data) {
        window.location.href = data;
        hide('statusContent');
        hide('statusFrame');
});

数据实际上是字符串中的整个html代码,但href需要一个文件。 如何在新页面中加载此代码(浏览器的后退按钮应该返回到调用它的页面)而不将其写入文件中?

0 个答案:

没有答案