IE浏览器不能使用window.open()的解决方案
1.判断浏览器是否为IEvar userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器 if(isIE){//如果...
原创
2018-04-26 13:34:14 ·
19774 阅读 ·
0 评论