jQuery基础----01jQuery简介及语法,jQuery的基本语法

来源:互联网 发布:家用中央空调知乎 编辑:程序博客网 时间:2024/06/04 00:25
<!DOCTYPE html><!--jQuery简介及语法,jQuery的基本语法-----><html><head lang="en">    <meta charset="UTF-8">    <title></title>    <!--先引入jq库,在引入自己的js-->    <script src="jquery-2.1.4.min.js"></script>    <script src="js01.js"></script></head><body>    <p>我只雷锋1</p>    <p>我只雷锋2</p>    <p>我只雷锋3</p>    <p>我只雷锋4</p>    <p>我只雷锋5</p></body>

</html>

js:

/** * Created by hao on 2015/8/15. *///文档加载完毕,出发的函数$(document).ready(function(){    //p元素点击事件,点击当前p元素隐藏    $("p").click(function(){        $(this).hide();    })})
jquery官网:http://jquery.com/
jqery库文件下载:
http://download.csdn.net/detail/zhaihaohao1/9280941(所有版本)
http://download.csdn.net/detail/zhaihaohao1/9116053
参考视频:http://www.jikexueyuan.com/path/html5/
参考网站地址:http://www.w3school.com.cn/jquery/index.asp

0 0