FVS大屏点击柱形图打开弹窗,但是需要根据不同的参数打开不同的弹窗,使用JS打开弹窗,但是报错:$is not a function,JS如下://模板路径var url = encodeURI(encodeURI("/webroot/decision/view/report?viewlet=/popup/urea.fvs"));//窗体var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");//将窗体的src属性设置为模板路径$iframe.attr("src", url);//窗体的属性var o = { title: "对话框", //标题 destroyOnClose:true, // 是否在关闭对话框的时候将对话框从dom中移除 width: 680, //宽度 height: 640, //高度 //closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false //draggable:true //是否可拖动,默认true};//弹出窗体FR.showDialog(o.title, o.width, o.height, $iframe, o);参考:https://help.fanruan.com/finereport/doc-view-3633.html,第二个第三个不报错,但是不显示内容,只显示标题