window.showModalDialog 在谷歌Uncaught TypeError: undefined is not a function


调用方法的变量未定义

Chrome 37+禁用对showModalDialog的默认支持。


if(navigator.userAgent.indexOf("Chrome") >0 ){
var winOption = "height="+height+",width="+width+",top=50,left=50,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,fullscreen=0";
    	return  window.open(url,window, winOption);
}
else{
    return window.showModalDialog(url, window, 'dialogHeight: ' + height + 'px; dialogWidth: ' + width + 'px;edge: Raised; center: Yes; help: Yes;scroll:no; resizable: no; status: no;resizable:yes');
}  



window.showModalDialog 在谷歌Uncaught TypeError: undefined is not a function

上一篇:2014.11.20 SOUI重要更新:SWindow的布局属性pos2type改由offset代替。


下一篇:64位win2003 IIS6运行32位的.NET程序