写弹窗提示这个错误 var url = encodeURI(encodeURI("/webroot/decision/view/report?viewlet=图表测试.cpt&"));//窗体var $iframe = $("<iframe id='inp' name='inp' width=600 height=200 scrolling='no' frameborder='0'>");//将窗体的src属性设置为模板路径$iframe.attr("src", url);//窗体的属性var o = { title: "对话框", //标题 width: 680, //宽度 height: 640, //高度 //closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false //draggable:true //是否可拖动,默认true};//假设在E列做悬停显示图片,图片的地址是固定url+xxx.jpg。$(".x-table td[id^=B").tooltip({ placement: "right", html: true, title: function() { var goodsno = $(this).html();//获取当前单据元的值// return '<div id="divBox" style="float:left;display:block;width:480px;padding:10px;text-align:top;background:#fff;border:1px solid #999;color:#333;cursor:pointer;"><ul style="display: inline-block;float:left;padding:20px;zoom:1;overflow:hidden;font-size:15px;}"><li style="float:left;list-style:none"> 投前信息录入<br> ☑——> </li><li style="float:left;list-style:none">数据校验<br>——☑——></li><li style="float:left; list-style:none">分行采纳<br> ——☑——></li></ul><li style="float:left;list-style:none"><br>分行复核<br> ——☑ </li></div>';return $iframe//弹出窗体//FR.showDialog(o.title, o.width, o.height, $iframe, o); //若图片地址是固定地址url+xxx.png/.jpg //return '<img width=180 height=250 src="http://help.finereport.com/view/help2017/images/'+goodsno +'.png" />'; }})