欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

document ready

程序员文章站 2022-03-18 19:44:29
...
<html>
<head>
<title></title>
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<style type="text/css">
.emphasis {color: green}
</style>

<script type="text/javascript">

//两种写法都可以
$(function() {
$('li:first-child').addClass('emphasis');
})

$(document).ready(function() {
$('li:first-child').addClass('emphasis');
});

</script>
</head>
<body>
<ul>
<li>hello</li>
<li>hello 2</li>
<li>hello 3</li>
</ul>

</body>
</html>