var iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='yes' frameborder='0'>"); // 对话框内iframe参数的命名,默认宽高占比是100%,可向下滚动 iframe.attr("src", url); // 给iframe添加src属性 var o = { width : 960, //对话框宽度 height: 700 //对话框高度 }; FR.showDialog(title, o.width, o.height, iframe,o);//弹出对话框 这段JS弹出的对话框模式 ,请问下怎么改成弹出新窗口 |