ปกติเมื่อมีการเรียกใช้ไฟล์ jQuery จะเรียกใช้ไฟล์ที่อยู่ใน Server ของเรา ตัวอย่างการใช้งาน jQuery ทั่วไป
1 2 3 4 5 6 | <script type= "text/javascript" src= "js/jquery-1.3.2.min.js" ></script> <script type= "text/javascript" > $( function (){ // แทรกโค้ด jQuery ของคุณ }); </script> |
มีอีกวิธีหนึ่งที่เราสามารถเรียกใช้ คุณสมบัติของ jQuery ผ่าน Google API ดังนี้
1 2 3 4 5 6 7 8 9 | <script type= "text/javascript" > google.load( "jquery" , "1.3.2" ); </script> <script type= "text/javascript" > $( function (){ // แทรกโค้ด jQuery ของคุณ }); </script> |