iframe_iframe引入其它页面

function showIframe(url, w, h) {
    //添加iframe
    var if_w = w;
    var if_h = h;
    $("<iframe width='" + if_w + "' height='" + if_h + "' id='YuFrame1' name='YuFrame1' style='position:absolute;z-index:4;'  frameborder='no' marginheight='0' marginwidth='0' allowTransparency='true'>").prependTo('body');
    $("#YuFrame1").attr("src", url)
    //添加背景遮罩
    $("<div id='YuFrame1Bg' style='position: fixed;top: 60px;right: 41px;background: red;background: red;z-index: 99;height: 22px; 32px;background: red;'></div>").prependTo('body');
    $("#YuFrame1Bg").click(function() {
        $("#YuFrame1").remove();
        $("#YuFrame1Bg").remove();
    });
}
原文地址:https://www.cnblogs.com/wush-1215/p/11170431.html