차이점은 무엇입니까
$(document).ready(function(){
//my code here
});
과
$(window).load(function(){
//my code here
});
그리고 나는 그것을 확인하고 싶다 :
$(document).ready(function(){
})
과
$(function(){
});
과
jQuery(document).ready(function(){
});
동일합니다.
그들 사이의 차이점과 유사점을 말해 줄 수 있습니까?