jQuery的基本语法

index.html代码

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="UTF-8">
 5 <title>Insert title here</title>
 6     <script src="jquery-3.1.0.min.js"></script>
 7     <script src="myjs.js"></script>
 8 </head>
 9 <body>
10     <p>hello</p>
11     <p>hello</p>
12     <p>hello</p>
13     <p>hello</p>
14     <p>hello</p>
15     <p>hello</p>
16 </body>
17 </html>

 

js代码:

$(document).ready(function(){
    //alert("文档加载完毕");
    $("p").click(function(){//点击p元素,p元素隐藏
        $(this).hide();
    })
});


 

posted @ 2016-08-11 14:04  UniqueColor  阅读(168)  评论(0编辑  收藏  举报