这个弹窗为什么标题栏和下面的内容栏对不齐呢? var iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='yes' framedorder='0'>"); // 对话框内 iframe 参数的命名,默认宽高占比是 100%,可向下滚动 iframe.attr("src", "http://172.16.11.75:5000"); // 给 iframe 添加 src 属性 var o = { width : 300,//对话框宽度 height: 92//对话框高度 }; FR.showDialog( "添加",o.width, o.height, iframe,o);//弹出对话框 |