帆软自带方法弹出窗口 和 js原生弹出div窗口
时间:2018-04-17 19:49:56
收藏:0
阅读:5415
帆软弹出窗口:
var $iframe = $("<iframe id=‘inp‘ name=‘inp‘ width=‘100%‘ height=‘100%‘ scrolling=‘no‘ frameborder=‘0‘>"); // iframe参数的命名及宽高等
$iframe.attr("src",bdcUrl+‘/selectBdcdy?proid=‘+proid);
var o = {
title : "123",
width : 800,
height: 700
};
FR.showDialog(o.title, o.width, o.height, $iframe,o); //首先弹出对话框
记得把变量定义上
源文件在电脑中位置:F:\bdcdj_server_16\webapps\report\WEB-INF\reportlets\score\血与泪的教训_弹窗.cpt
js原生弹出窗口:
https://jingyan.baidu.com/article/9989c746d1641bf648ecfeb2.html
还没有自己试验一下
评论(0)