jQuery チュートリアル
jQuery チュートリアル
jQuery は JavaScript ライブラリです。
jQuery は JavaScript プログラミングを大幅に簡素化します。
jQuery は學(xué)ぶのが簡単です。
例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>如果你點(diǎn)我,我就會消失。</p> <p>繼續(xù)點(diǎn)我!</p> <p>接著點(diǎn)我!</p> </body> </html>
jQuery の例
このチュートリアルでは、チュートリアルと多くのオンライン例を通じて、jQuery を使用して JavaScript 効果を適用する方法を?qū)Wびます。