jquery1.9版本之后又什么办法可以实现同样的功能吗
jquery1.9版本之后又什么办法可以实现同样的功能吗
jquery1.9版本之后又什么办法可以实现同样的功能吗
2017-07-07
我也是搜的答案:
jQuery 从 1.9 版开始,移除了 $.browser 和 $.browser.version , 取而代之的是 $.support 方法
alert($.support.opacity+" "+$.support.style+" "+window.XMLHttpRequest); ie6:false false undefind ie7:false false object ie8:false true object ie9:true true object SO,判断浏览器可以:alert($.support.opacity+" "+$.support.style+" "+window.XMLHttpRequest); var isIE6 = !$.support.opacity && !$.support.style && window.XMLHttpRequest==undefined; var isIE7 = !$.support.opacity && !$.support.style && window.window.XMLHttpRequest!=undefined; var isIE67 = !$.support.opacity && !$.support.style;//ie6\7 如果要检查ie浏览器,干脆直接使用 var isIE = /msie/.test(navigator.userAgent.toLowerCase());
举报