jquery

作者: 曾柏超 | 来源:发表于2018-01-18 13:41 被阅读0次

    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>
    <p>If you click on me, I will disappear.</p>
    <p>If you click on me, I will disappear.</p>
    
    </body>
    
    </html>
    

    相关文章

      网友评论

          本文标题:jquery

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