1 2 3 | $(document).ready(function(){ // เริ่มต้นโค้ดของคุณในส่วนนี้ }); |
1 2 3 4 5 6 7 8 9 10 11 12 13 | < html > < head > < script type = "text/javascript" src = "/js/jquery-1.2.6.min.js" ></ script > < script type = "text/javascript" > $(document).ready(function(){ // เริ่มต้นโค้ดของคุณในส่วนนี้ }); </ script > </ head > < body > </ body > </ html > |
1 2 3 | $(function(){ // เริ่มต้นโค้ดของคุณในส่วนนี้ }); |
1 2 3 | jQuery(function($) { // เริ่มต้นโค้ดของคุณในส่วนนี้ }); |
1 2 3 4 5 6 7 8 9 10 11 12 13 | < html > < head > < script type = "text/javascript" src = "/js/jquery-1.2.6.min.js" ></ script > < script type = "text/javascript" > $(function(){ // เริ่มต้นโค้ดของคุณในส่วนนี้ }); </ script > </ head > < body > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 | < html > < head > < script type = "text/javascript" src = "/js/jquery-1.2.6.min.js" ></ script > < script type = "text/javascript" > jQuery(function($) { // เริ่มต้นโค้ดของคุณในส่วนนี้ }); </ script > </ head > < body > </ body > </ html > |
1 2 3 | $(function(){ // เริ่มต้นโค้ดของคุณในส่วนนี้ }); |