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)!