var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");//窗体的属性var o = { title: "审批", //标题 destroyOnClose: true, // 是否在关闭对话框的时候将对话框从dom中移除 width: 800, //宽度 height: 600, //高度 //closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false //draggable:true //是否可拖动,默认true};//弹出窗体$iframe.attr("src", url);window.parent.FR.showDialog(o.title, o.width, o.height, $iframe, o);弹窗用这个这个写的