未经跨浏览器测试,但我认为这会起作用。不过必须在加载jquery之后,否则必须用纯Javascript重写它。
<script type="text/javascript">$.each(document.styleSheets, function(i,sheet){ if(sheet.href=='http://pre.jquery.com/mobile/1.0b3/jquery.mobile-1.0b3.min.css') { var rules = sheet.rules ? sheet.rules : sheet.cssRules; if (rules.length == 0) { $('<link rel="stylesheet" type="text/css" href="path/to/local/jquery.mobile-1.0b3.min.css" />').appendTo('head'); } }})</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)