if(Ext.isIE){
if(parent.document.frames[id].document.getElementById("graphContainer") != null){
//parent.document.frames[id].document.location.reload(); /*刷新页面法,体验不好,取消*/
parent.document.frames[id].run(); /*调用页面中的run函数,流程页面中必须有此函数*/
}
}else{
if(document.getElementById(id).contentDocument.getElementById("graphContainer") != null){
//document.getElementById(id).contentDocument.location.reload(true); 
document.getElementById(id).contentWindow.run();

相关文章:

  • 2022-12-23
  • 2021-09-23
  • 2022-12-23
  • 2021-11-17
  • 2021-08-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-13
  • 2021-07-28
  • 2022-12-23
  • 2021-05-17
  • 2021-06-02
  • 2021-11-03
相关资源
相似解决方案