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

jQuery 自定义方法(扩展方法)

时间:2017-12-22 12:31:34      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:src   nbsp   timeout   cti   opacity   meta   title   fun   head   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery-3.2.1.js"></script>
    <style>
        #div1{
            height: 400px;
            width: 600px
            background-color: #7b7b7b;
            opacity: 1;
        }
    </style>
</head>
<body>
    <div id="div1"></div>
    <script>
        (function ($) {
            $.fn.extend({
                hello:function () {

                     setTimeout("$(\"#div1\").css(\"background-color\",\"red\");",2000);

                     setTimeout("$(\"#div1\").css(\"background-color\",\"black\");",4000);

                     setTimeout("$(\"#div1\").css(\"background-color\",\"gold\");",6000);
                }
            })
        })(jQuery);

        $("#div1").hello()
    </script>
</body>
</html>

 

jQuery 自定义方法(扩展方法)

标签:src   nbsp   timeout   cti   opacity   meta   title   fun   head   

原文地址:http://www.cnblogs.com/laoguiaabb/p/8085259.html

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