欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery和$的区别

程序员文章站 2022-05-20 22:01:21
...
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script src="jquery-1.11.1.js"></script>
    <script>

        console.log($);
        console.log(jQuery);
        console.log($===jQuery);
//        jQuery("");

        jQuery(document).ready(function () {
            alert(1);
        });

    </script>
</head>
<body>

</body>
</html>

三次打印结果如下:

jquery和$的区别