初识JQuery 实例一(first)-jquery

时间:2016-04-09
完整代码:
代码如下:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.highlight
{
background-color: yellow;
}
.gray
{
background-color: Gray;
}
</style>
<script src="http://code.jquery.com/jquery-1.5.js"></script>
</head>
<body>
<ul>
<li>Look:</li>
<li>This is some text in a paragraph.</li>
<li>This is a note about it.</li>
</ul>
<script type="text/javascript">
$("ul li").first().addClass('highlight');
jQuery("ul li").first().next().addClass('gray');
</script>
</body>
</html>
上一条:jQuery hover 延时器实现代码-jquery 下一条:项目管理:交互-设计-制作三个角色的组合

相关文章

最新文章