Ajax帖子用about:blank url打开新窗口

时间:2016-07-15 12:50:06

标签: javascript ajax

我有这个Ajax post方法打开新窗口,数据很好,但是在新窗口的URL字段中始终是:空白。我想要在url字段中写入特定的URL。

    if (url) {
        $.ajax({
            type: "POST",
            url: url,
            data: array
        }).done(function (data) {
            var w = window.open();
            w.location.href = url;
            w.document.write(data);
            w.document.close();
        });

        e.preventDefault();
    }

0 个答案:

没有答案