var isIE = navigator.userAgent.toLowerCase().indexOf('trident')>-1?true:false;
//判断浏览器版本
if(isIE){
//IE
var sPhoto=showModalDialog(url,"", "font-family:Verdana; font-size:12; status:no; unadorned:yes; scroll:no; resizable:yes;dialogWidth:330px; dialogHeight:250px");
if ((sPhoto!=null) && (sPhoto!="http://") ){
format("InsertImage",sPhoto);
}
}else{
//火狐、谷歌等...
var sPhoto = window.open(url,"", 'height=300, width=250, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=no');
var loop = setInterval(function() {
if(sPhoto.closed) {
clearInterval(loop);
var vvv = sPhoto.returnValue
if ((vvv!=null) && (vvv!="http://") ){
format("InsertImage",vvv);
}
}
}, 1000);
}
showModalDialog IE兼容性 (可替换window.open)
最新推荐文章于 2024-01-29 02:00:43 发布