弹窗需要修改标题 title由 参数ind_type + "行业-" + 参数cus_type + "客户" 参数ind_type是获取的x轴,参数cus_type是获取的y轴 目前x轴实际值是1-100内的数字,需要根据判断将x轴转化为文本, 请问这个判断在哪写,并且如何拼接到title里面 var url = dest_url + "&cus_type="+cus_type + "&ym="+ym + "&khfw="+khfw + "&ind_type="+ind_type + "&amount_type="+amount_type; //窗体 var $iframe = $(" //将窗体的src属性设置为模板路径 $iframe.attr("src", url); //窗体的属性 var o = { title: ind_type + "行业-" + cus_type + "客户", //标题 destroyOnClose:true, // 是否在关闭对话框的时候将对话框从dom中移除 width: "50%", //宽度 height: "50%", //高度 closable:true, //是否显示关闭按钮,默认true //confirm:true, //是否添加确认取消按钮,默认false draggable:false //是否可拖动,默认true }; //弹出窗体 FR.showDialog(o.title, o.width, o.height, $iframe, o); |