2017-09-15
摘抄自W3school-jQuery 教程
希望帮助自己系统地打好基础,也能在做笔记的同时添加一些自己额外的收获。
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>
</body>
</html>
需要具备的基础知识
- HTML
- CSS
- JavaScript