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>
上一篇: ajax中文乱码问题解决方案
下一篇: 函数申明与函数表达式【翻译】
推荐阅读
-
AJAX的进阶使用(Blob、ArrayBuffer、FormDate、Document、JSON、Text)-javascript-lNong-SegmentFault思否
-
JS 的 Document对象
-
用Document Imaging轻松把图片上的文字转成word文字
-
JQuery的ready函数与JS的onload的区别详解
-
jQuery获取iframe的document对象的方法教程
-
在文档加载后使用(document./write),会覆盖整个文档的原因是什么
-
JQ中$(window).load和$(document).ready区别与执行顺序
-
jquery中的$(document).ready()使用小结
-
JQuery中$(document)是什么意思有什么作
-
PHP Document 代码注释规范