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

Posted 归来仍是少年!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 自定义方法(扩展方法)相关的知识,希望对你有一定的参考价值。

<!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 自定义方法(扩展方法)的主要内容,如果未能解决你的问题,请参考以下文章

VS Code中自定义Emmet代码片段

jQuery,js如何扩展自定义方法

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

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

VS中添加自定义代码片段——偷懒小技巧