//寫法1: $(document).ready(function(){ …… }) //寫法2: jQuery(document).ready(function(){ …… }) //寫法3: $(function(){ …… }) //寫法4: jQuery(function(){ …… })