按钮弹出窗口js代码
var URL="";
var url = FR.cjkEncode(URL);
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: "对话框", //标题
width: 680, //宽度
height: 640, //高度
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);
setTimeout(function() {
window.parent.FR.closeDialog(); //确定获取值后,关闭取消父窗口的对话框 window.parent.FR.destroyDialog();
}, 3000) //3秒后关闭