2017-09-15
摘抄自W3school-jQuery 教程
希望幫助自己系統(tǒng)地打好基礎(chǔ),也能在做筆記的同時(shí)添加一些自己額外的收獲束铭。
jQuery 是一個(gè)JavaScript 庫
jQuery 極大地簡化了 JavaScript 編程
jQuery 很容易學(xué)習(xí)
實(shí)例
<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>
需要具備的基礎(chǔ)知識(shí)
- HTML
- CSS
- JavaScript