2012-07-22 23:34:27nut
jQuery 值得學習的範例網站
20120722 學習jQuery 小眉角
1. 匯入jQuery路徑的script, 要放在<head></head>中
2. 真正寫javascript的程式, 放在</head>之下, body之上
3. 只要在1. 中有匯入, 在真正寫javascript的程式中, 就不會再匯入一次了
Ex.
<html>
<head>
<title>jQuery Hello World Alert box</title>
<script type="text/javascript" src="JSDownLoad/jquery-
</head>
<script type="text/javascript">
$(document).ready(function(){
$("#cl").click(function(){
alert("HELLO WORLD!");
});
});
</script>
<body>
<font color="red">CLICK BELOW BUTTON TO SEE ALERT BOX</font>
<br>
<br>
<button id="cl">Click Me</button>
</body>
</html>