各位大佬,这是我在fvs中写的对话框js,已经添加了隐藏关闭按钮的代码,但是鼠标移到右上角还是会显示,这个怎么隐藏?"use document";
const iframe = document.createElement("iframe");
iframe.width = "100%";
iframe.height = "100%";
//iframe.scrolling = "no";
iframe.frameborder = "0";
iframe.src = "/webroot/decision/view/duchamp?viewlet=/Theme/Security/DataInteligence/data_secure_analyze_unprotected_system.fvs"+"&xa_reig1="+xa_reig1+"&cpmo_cop1="+cpmo_cop1;
//弹出对话框
var aw = 0.4*window.screen.width;
var ah = 0.6*window.screen.height;
duchamp.showDialog(
{
width:aw,
height:ah,
innerContent:iframe,
closable:false, //是否显示关闭按钮,默认true
}
);