setTimeout(function() {$("span.linkspan").mouseover(function() {var name=$(this).text();//获取当前单元格的值var url = encodeURI(encodeURI('${servletURL}?viewlet=ZDYRPT/test.frm&op=view&name='+name));//窗体var $iframe = $("//将窗体的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);//弹出窗体}) $("span.linkspan").mouseleave(function() {parent.$(".content-container").css("filter","none")//清除父窗口遮罩parent.FR.closeDialog()//关闭父窗口打开的对话框;parent.FR.destroyDialog()})}, 100);