Posted in Javascript onApril 02, 2014
该方法支持IE浏览器和其他浏览器。
1、首先定义两个link,当然你也可以是一个,第二个是要更改的css
<link rel="stylesheet" type="text/css" href="main.css" /> <link id="size-stylesheet" rel="stylesheet" type="text/css" href="narrow.css" />
2、下面的JavaScript代码将根据不同的浏览器大小,更改css
function adjustStyle(width) { width = parseInt(width); if (width < 701) { $("#css").attr("href", "css/narrow.css"); } else if ((width >= 701) && (width < 900)) { $("#css").attr("href", "css/medium.css"); } else { //$("#css").attr("href", "<?php bloginfo('stylesheet_url'); ?>"); document.write("css/style.css") } } $(function() { adjustStyle($(this).width()); $(window).resize(function() { adjustStyle($(this).width()); }); });
以上代码经过测试可用!!
jquery实现不同大小浏览器使用不同的css样式表的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@