jQuery入口函数四种写法

Posted xdsuannai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery入口函数四种写法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>04-jQuery入口函数的其它写法</title>
    <script src="js/jquery-1.12.4.js"></script>
    <script>
        // 1.第一种写法
        $(document).ready(function () {
            // alert("hello lnj");
        });

        // 2.第二种写法
        jQuery(document).ready(function () {
            // alert("hello lnj");
        });

        // 3.第三种写法(推荐)
        $(function () {
            // alert("hello lnj");
        });

        // 4.第四种写法
        jQuery(function () {
            alert("hello lnj");
        });
    </script>
</head>
<body>

</body>
</html>

在项目中以上的写法都可以使用,个人比较推荐用第三种写法,简洁方便

以上是关于jQuery入口函数四种写法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 入口函数主要有4种写法

jQuery入口函数

jquery选择一元素的父类元素的写法

.Net 7 托管Main入口的四种写法(茴香豆?)

Js-jqueryday01

jquery写法转成原生js写法?