首页 > Windows开发 > 详细

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

时间:2014-11-20 15:23:15      阅读:714      评论:0      收藏:0      [点我收藏+]

调用方法的变量未定义

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

原文:http://blog.csdn.net/xuke6677/article/details/41312563

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!