jquery初学笔记
官方网站:http://jquery.com/
一个简单的JQuery实例:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head> <meta charset="utf-8" />
<title> Hello JQuery</title>
</head>
<body>
<!--> 添加jquery的引用文件<-->
<script lang ="javascript" type ="text/javascript" src ="JQuery/jquery-2.1.0.min.js">
</script>
<script type ="text/javascript">
$(document).ready(function () { alert("Hello JQuery!")}) // 程序段
</script>
</body>
</html>