如果你的项目只能使用IE浏览器打开,你想让其支持chrome的话,可以试一下下面的代码哦:

function showLayerDialog(url,paramFuction){

  top.layer.open({

    type:2,

    area:['85%','85%'],

    maxmin:true,

    moveOut:true,

    end:paramFuction,

    content:url

});

}

//layer

function closeLayerWindow(){

  var index=parent.layer.getFrameIndex(window.name);//先得到当前frame层

  parent.layer.close(index);

}

相关文章:

  • 2022-12-23
  • 2021-10-12
  • 2021-09-03
  • 2021-04-08
  • 2021-07-23
  • 2022-12-23
  • 2021-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-29
  • 2021-06-28
  • 2022-01-11
相关资源
相似解决方案