Home >Web Front-end >JS Tutorial >JavaScript Strengthening Tutorial - Writing Your First jQuery Program
JavaScript Enhancement Tutorial - What is JQ about writing the first jQuery program?
jQuery is a JavaScript library.
jQuery greatly simplifies JavaScript programming.
jQuery is easy to learn.
A simple JQ program!
<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>
The above is the JavaScript intensive tutorial - writing the first jQuery program. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!