美文网首页
ajax弹出新页面展示html

ajax弹出新页面展示html

作者: i_1312 | 来源:发表于2019-10-21 18:34 被阅读0次

    主界面上通过ajax返回的html字符串,然后怎么进行弹出新页面进行展示这个html

    https://ask.csdn.net/questions/698495

    $.ajax({
        url: "./xxxx/123.html",
        type: "GET",
        dataType: "text",
        success: function (data) {
            var ow = window.open();
            ow.document.write(data);
            ow.document.clear();
        }
    });
    #要注意在返回的html字符串中,需要加载的css和js文件地址或超链接的url地址都要写成相对于当前页面的相对地址,不要写成相对于123.html的相对地址。
    

    另外的方式:
    不需要ajax,直接用window.open('url', '_blank');加载你的地址就可以了
    window.open("{{ url_for('testnew') }}?imgname="+data, '_blank');

    /textsearch/?page=3&keyword=青花&dynasty=&type1="

    相关文章

      网友评论

          本文标题:ajax弹出新页面展示html

          本文链接:https://www.haomeiwen.com/subject/rfhsyctx.html