JavaScript強化教學――編寫第一個jQuery程式什麼事JQ?
jQuery 是一個 JavaScript 函式庫。
jQuery 大大簡化了 JavaScript 程式設計。
jQuery 很容易學習。
一個簡單地JQ程式!
<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>
以上就是JavaScript強化教學――編寫第一個jQuery程式的內容,更多相關內容請關注PHP中文網(www.php.cn)!