<script src="js/jquery-1.8.3.min.js"></script>
<script>
window.onload=function(){
if (screen.width <= 1024){ //分辨率小于等于1024时
$(".m1").attr("class", "red");//替换class为ml的样式为red;
$(".m2").show();
}else{
$(".m1").show();
$(".m2").hide();
}
}
</script>
<style>
.red {color:red;}
</style>
</head>
<body>
<div class="m1">m1m1m1m1mm1m1m1mm11mm1m1m</div>
<div class="m2">m2m2m2m2m2m2m2m2mm2m2m2m2m2m</div>
</body>
原文地址:http://1940817891.blog.51cto.com/9833202/1791452