0
|
Poseidon发布于2017-10-9 09:24(编辑于 2023-9-6 09:34)
|
555
|
-
dgj(提问者)
- 链接是可以过去了,但是不会设置对话框形式,可以写个例子吗
-
Poseidon
- 回复 dgj :控制 target选项
_blank 在新窗口/选项卡中打开。
_self 在同一框架中打开。(默认)
_parent 在父框架中打开。
_top 在整个窗口中打开。
framename 在指定的框架中打开。
-
dgj(提问者)
- var b = this.getValue();
var url = \"ReportServer?reportlet=/pmcenter/pmportal-sec/SECONDUNIT_JZHTGL.cpt\";
FR.doHyperlinkByPost(url,{para:b},\'title\');
还是不太明白,比如上面这段js ,怎么加一个600*600的对话框
-
Poseidon
- 回复 dgj :根据(不同)内容超链接到不同网址-http://help.finereport.com/doc-view-1839.html
看下这个吧,直接改改就好了;
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: 550 //对话框高度
};
FR.showDialog(title, o.width, o.height, iframe,o);//弹出对话框
-
dgj(提问者)
- 可以了!十分感谢!
|
|