美文网首页
jQuery 教程

jQuery 教程

作者: moralok | 来源:发表于2017-09-15 19:49 被阅读0次

    2017-09-15
    摘抄自W3school-jQuery 教程
    希望帮助自己系统地打好基础,也能在做笔记的同时添加一些自己额外的收获。

    jQuery 是一个JavaScript 库
    jQuery 极大地简化了 JavaScript 编程
    jQuery 很容易学习

    实例

    <html>
    <head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $("p").click(function(){
      $(this).hide();
      });
    });
    </script>
    </head>
    
    <body>
    <p>If you click on me, I will disappear.</p>
    </body>
    
    </html> 
    

    需要具备的基础知识

    • HTML
    • CSS
    • JavaScript

    相关文章

      网友评论

          本文标题:jQuery 教程

          本文链接:https://www.haomeiwen.com/subject/sejesxtx.html