기본 형태는 다음과 같습니다..
<!DOCTYPE html>
<html>
<head>
<script src="http://yourServer.com/js/jquery.min.js"></script>
<script>
jquery code 가 들어가는 자리
</script>
</head>
<body>
<p>Your tags here</p>
</body>
</html>
jQuery의 핵심 함수는....
jQuery()
또는
$()
형태이고 $()는 하나의 함수입니다...
$()는 jQuery객체를 반환합니다..
jQuery객체는 몇 개의 메소드를 갖게 되는데 예를 들면,
$.ajax()
$.each()
이런 것들이 있습니다..
등록된 댓글이 없습니다.