[js]用js来判断这货是不是ie6浏览器
[js]用js来判断这货是不是ie6浏览器,以及原生JavaScript加载样式文件
[js]用js来判断这货是不是ie6浏览器
- var ua = navigator.userAgent.toLowerCase();
- var isIE6 = ua.indexOf("msie 6") > -1;
- if (isIE6) {
- try {
- document.execCommand("BackgroundImageCache", false, true)
- } catch(e) {}
- }
原生JavaScript加载样式文件
- function LoadStyle(url) {
- try {
- document.createStyleSheet(url)
- } catch(e) {
- var cssLink = document.createElement('link');
- cssLink.rel = 'stylesheet';
- cssLink.type = 'text/css';
- cssLink.href = url;
- var head = document.getElementsByTagName('head')[0];
- head.appendChild(cssLink)
- }
- }
热门文章推荐
- [JS]window.location获取url各项参数详解
- [JS]jQuery,javascript获得网页的高度和宽度
- [JS]视频弹窗视频弹出层videoLightBox(含三种播放器的用法)
- [JS]JS提交中文encodeURI两次转码
- [JS]js版方面encodeURI转码和decodeURI解码的用法实例
- [JS]js取当前机子的时间戳实例
- [JS]AES加密(基于crypto-js)PHP后端解密
- [JS]data:image/png;base64写法的用途及说明
请稍候...