初学jquery

点击事件

先下载或引用<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>等   

下载 jQuery所有版本地址:http://www.jq22.com/jquery-info122

这些网上可以在线学习,但还是自己写一下记忆深刻点

 <!DOCTYPE html>

<html>

<head>

<script scr="http://code.jquery.com/jquery-1.7.2.min.js"></script>

<script>

  $(document).ready(function(){

    $("p").click(function(){

      $(this).hide();  //$(this).remove();

    })

  })

</script>

</head>

<body>

  <p>点击我消失hide</p>

  <p>点击我也会消失remove</p>

  <p>点击我也是</p>

</body>

</html>

 

posted @ 2017-11-18 23:40  MoVector  阅读(95)  评论(0)    收藏  举报