jQuery ¼ò½é
jQuery ¿â¿ÉÒÔͨ¹ýÒ»Ðмòµ¥µÄ±ê¼Ç±»Ìí¼Óµ½ÍøÒ³ÖС£
jQuery ¿â - ÌØÐÔ
jQuery ÊÇÒ»¸ö JavaScript º¯Êý¿â¡£
jQuery ¿â°üº¬ÒÔÏÂÌØÐÔ£º
- HTML ÔªËØÑ¡È¡
- HTML ÔªËØ²Ù×÷
- CSS ²Ù×÷
- HTML ʼþº¯Êý
- JavaScript ÌØÐ§ºÍ¶¯»
- HTML DOM ±éÀúºÍÐÞ¸Ä
- AJAX
- Utilities
ÏòÄúµÄÒ³ÃæÌí¼Ó jQuery ¿â
jQuery ¿âλÓÚÒ»¸ö JavaScript ÎļþÖУ¬ÆäÖаüº¬ÁËËùÓÐµÄ jQuery º¯Êý¡£
¿ÉÒÔͨ¹ýÏÂÃæµÄ±ê¼Ç°Ñ jQuery Ìí¼Óµ½ÍøÒ³ÖУº
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
Çë×¢Ò⣬<script> ±êǩӦ¸ÃλÓÚÒ³ÃæµÄ <head> ²¿·Ö¡£
»ù´¡ jQuery ʵÀý
ÏÂÃæµÄÀý×ÓÑÝʾÁË jQuery µÄ hide() º¯Êý£¬Òþ²ØÁË HTML ÎĵµÖÐËùÓÐµÄ <p> ÔªËØ¡£
ʵÀý
<html> <head><script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){$("p").hide();
}); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button type="button">Click me</button> </body> </html>
ÏÂÔØ jQuery
¹²ÓÐÁ½¸ö°æ±¾µÄ jQuery ¿É¹©ÏÂÔØ£ºÒ»·ÝÊǾ«¼ò¹ýµÄ£¬ÁíÒ»·ÝÊÇδѹËõµÄ£¨¹©µ÷ÊÔ»òÔĶÁ£©¡£
ÕâÁ½¸ö°æ±¾¶¼¿É´Ó jQuery.com ÏÂÔØ¡£
¿âµÄÌæ´ú
Google ºÍ Microsoft ¶Ô jQuery µÄÖ§³Ö¶¼ºÜºÃ¡£
Èç¹ûÄú²»Ô¸ÒâÔÚ×Ô¼ºµÄ¼ÆËã»úÉÏ´æ·Å jQuery ¿â£¬ÄÇô¿ÉÒÔ´Ó Google »ò Microsoft ¼ÓÔØ CDN jQuery ºËÐÄÎļþ¡£
ʹÓà Google µÄ CDN
<head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs /jquery/1.4.0/jquery.min.js"></script> </head>
ʹÓà Microsoft µÄ CDN
<head> <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery /jquery-1.4.min.js"></script> </head>