jQuery-基础

2019-08-15  本文已影响0人  遇明不散

jQuery

jQuery是什么

jQuery是一款优秀的JavaScript库,它简化了繁琐的原生JavaScript,让HTML文档遍历和操作、事件处理、动画以及Ajax变得更加简单。

jQuery的作用
jQuery的基本使用
<head>
    <meta charset="UTF-8">
    <title>jQuery</title>
    <!-- 引入下载的jQuery库 -->
    <script src="code/js/jquery-1.12.4.js"></script>
</head>
<script>
    $(document).ready(function () {
      // jQuety代码
         alert("hello world");
    });
</script>
jQuery和JavaScript入口函数的区别
JavaScript入口函数
jQuery入口函数
<!-- js -->
<script>
        window.onload = function () {
            alert("hello world1"); // 不会显示
        }
        window.onload = function () {
            alert("hello world2"); // 会显示
        }
</script>

<!-- jQuery -->
<script>
        $(document).ready(function () {
            alert("hello world1"); //会显示
        });
        $(document).ready(function () {
            alert("hello world2"); // 会显示
        });
</script>
jQuery入口函数的其它写法
<script>
    // 第一种写法
    $(document).ready(function () {
        alert("hello world");
    });

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

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

    // 第四种写法
    jQuery(function () {
        alert("hello world");
    });
</script>
jQuery冲突问题
<script>
    // 释放$的使用权
    jQuery.noConflict();
</script>
<script>
  // 自定义一个访问符号
  var my = jQuery.noConflict();
  my(function () {
    alert("hello world");
  });
</script>
上一篇下一篇

猜你喜欢

热点阅读