我在一个WEB页面中用iframe引用了一张报表,显示是分页预览的界面,可不可以更改为数据分析或者填报的界面。我是按照帮助里面的教程,使用如下代码 <html> <head> <title>FineReport Demo</title> <meta http-equiv="Content-Type" content="text/html; charset=GBK" /> <script type="text/javascript" src="/WebReport/ReportServer?op=emb&resource=finereport.js"></script> <script language="javascript"> function autoLoad(){ var addr = FR.cjkEncode("/WebReport/ReportServer?reportlet=/doc/Primary/Parameter/Parameter.cpt&地区=华东"); document.getElementById("reportFrame").src = addr; } window.onload = autoLoad; </script> </head> <body> <iframe id="reportFrame" width="900" height="400" ></iframe> </body> </html> |