안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

2017년 12월 15일 금요일

jquery document ready 편하게 쓰기

$(function() {
 // code here
});

$(function( $ ) {
 // code here
});

(function() {
 // code here
}());
$(document).ready(function(){
  // code here
});

저 4개는 같은 기능이다.
출처: https://stackoverflow.com/questions/12008843/start-javascript-code-with-function-etc

댓글 없음:

댓글 쓰기