zl程序教程

您现在的位置是:首页 >  前端

当前栏目

初识JQuery实例一(first)

jQuery实例 初识 First
2023-06-13 09:14:27 时间
完整代码:
复制代码代码如下:

<!DOCTYPEhtml>
<html>
<head>
<styletype="text/css">
.highlight
{
background-color:yellow;
}
.gray
{
background-color:Gray;
}
</style>
<scriptsrc="http://code.jquery.com/jquery-1.5.js"></script>
</head>
<body>
<ul>
<li>Look:</li>
<li>Thisissometextinaparagraph.</li>
<li>Thisisanoteaboutit.</li>
</ul>
<scripttype="text/javascript">
$("ulli").first().addClass("highlight");
jQuery("ulli").first().next().addClass("gray");
</script>
</body>
</html>