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;width: 32px;background: red;'></div>").prependTo('body');
    $("#YuFrame1Bg").click(function() {
        $("#YuFrame1").remove();
        $("#YuFrame1Bg").remove();
    });
}

 

相关文章:

  • 2022-02-21
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2021-09-25
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-28
相关资源
相似解决方案