jquery document,window載入的順序

//HTML載入就執行
$j(document).ready(function() {  
  xx();
}); 
//等圖全部載入再執行
$j(window).load(function() {
 xx();
 });

Other