码迷,mamicode.com
首页 > Web开发 > 详细

jquery的ready()

时间:2015-10-14 19:39:22      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="../js/jquery.js"></script>
<script>
    click_span();
    function click_span()
        {
            $(document).ready(function(e) {
                var p = document.getElementsByTagName("p")[0];
            $(p).hide(3000,"linear",function(){alert("finish")});
            });
                
        }
</script>
</head>

<body>
    <p>p1</p>
    <span>span</span>
    <input type="button" value="btn" onclick="click_span()"/>
</body>
</html>

在完成文档加载后,实现隐藏段落的jquery效果。

如果不加$(document).ready(func);那么在运行document.getElementsByTagName的到空对象,就不能实现文档加载完时隐藏段落的效果

jquery的ready()

标签:

原文地址:http://www.cnblogs.com/pmx-pmx/p/4878206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!