■ jQuery 기본 형식
페이지 정보
작성자 관리자 작성일 21-07-19 13:51 조회 827 댓글 0본문
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.4.1.min.js"></script>
</head>
<body>
<script>
$(document).ready(function(){ // 아래와 동일
console.log("jQuery Start~");
});
</script>
<script>
$(function(){ // 짧게 표현 가능
console.log("jQuery Start~");
});
</script>
</body>
</html>
추천0 비추천 0
댓글목록 0
등록된 댓글이 없습니다.