출처 : http://j07051.tistory.com/414
이클립스 실행
Help -> Install New Software... 클릭
Work witth: http://download.aptana.org/tools/studio/plugin/install/studio 붙여넣으시고 엔터
인스톨이 끝나고 이클립스를 재시작
Help -> Install Aptana Features... 클릭
인스톨 완료
Window -> preferences -> Aptana -> Editors -> JavaScript -> Code Assist
이로써 설정이 끝났습니다.
그럼 잘 동작하는지 확인을 한번 해보죠.
체크를 하게되면 자동으로 jquery.js 추가가 됩니다.
index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Web Project</title>
<script type="text/ecmascript" src=lib/jquery/jquery-1.4.2.js></script>
<script type="text/ecmascript">
$(document).ready(function(){
alert("Hello JQuery !!");
});
</script>
</head>
<body>
</body>
</html>
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New Web Project</title>
<script type="text/ecmascript" src=lib/jquery/jquery-1.4.2.js></script>
<script type="text/ecmascript">
$(document).ready(function(){
alert("Hello JQuery !!");
});
</script>
</head>
<body>
</body>
</html>
'Stupid Computer > 4. JavaScript' 카테고리의 다른 글
[Javascript] Null 과 undefined의 차이 ! ( C/C++/JAVA 모두 동일 ) (0) | 2014.05.07 |
---|---|
[JavaScript] history.back() , history.go(-1) 이 작동하지 않으면 (0) | 2014.05.07 |
[json] 사용 예제 ! json, cjson 사용예제] (1) | 2014.04.08 |
[자바스크립트] node.js란 ? node.js 설치 방법! [window] (0) | 2014.04.01 |
[자바스크립트] Code-assist ( Aptana Plugin설치 ) (0) | 2014.03.28 |
[json/json.h] json reference file ! json 사용법 ! (0) | 2014.03.25 |
[자바스크립트] 자바스크립트 라이브러리 정리( 최근 인기있는것들 ) (0) | 2014.03.25 |
[자바스크립트] 공부 사이트 ! 자바스크립트 강좌 JASKO (0) | 2014.03.25 |
[자바스크립트] DOM(문서 객체 모델, Document Object Model) 정리 (0) | 2014.03.20 |
[자바스크립트] Cordova 란 ? (0) | 2014.03.20 |