■ jQuery 기본 형식
페이지 정보

본문
<!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
- 이전글▲ jQuery 위치 필터 선택자 23.04.02
- 다음글● jQuery 연결 방법 21.07.19
댓글목록
등록된 댓글이 없습니다.