首先下载jquery3.0 或者其他版本
html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>
无标题页
</title>
<script type="text/javascript" src="js/jquery-1.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".s1 div:first-child").each(function(){
$(this).addClass("s1c");
});
$(".ms-WPHeader td:first-child").each(function(){
$(this).addClass("s1c");
});
})
</script>
<style type="text/css">
.s1c {font-size:48px; background-color:blue;}
.s2c {color:blue;}
.s3c {background-color:yellow;}
</style>
</head>
<body>
<form>
<div>
</div>
<div class='s1'>divvvv<div>divlimian1</div><div>divlimian2</div></div>
<table width="100%">
<tr class="ms-WPHeader">
<td>
标题
</td>
<td>
管理
</td>
</tr>
</table>
</form>
</body>
</html>