var title="标题"; var url ="http://www.baidu.com"; var iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='yes' frameborder='0'>"); // 对话框内 iframe 参数的命名,默认宽高占比是 100%,可向下滚动 iframe.attr("src", url); // 给 iframe 添加 src 属性 var w = document.documentElement.clientWidth*0.5; var h = document.documentElement.clientHeight*0.8; var o = { width : w, //对话框宽度 height: h //对话框高度 }; FR.showDialog(title, o.width, o.height, iframe,o);//弹出对话框 |