根据IE和FF加载不同css样式文件

来源:互联网 发布:剑灵捏脸数据免费的 编辑:程序博客网 时间:2024/05/22 06:45

$(function() {if ((navigator.userAgent.indexOf('MSIE') >= 0)&& (navigator.userAgent.indexOf('Opera') < 0)) {//iejQuery("head").append("<link>");a = jQuery("head").children(":last");a.attr({rel : "stylesheet",type : "text/css",href : "css/positionTreeForIE.css"});} else {$("<link>").attr({rel : "stylesheet",type : "text/css",href : "css/positionTreeForFF.css"}).appendTo("head");}});


0 0