본문 바로가기

Stupid Computer/4. JavaScript

[자바스크립트 개발환경 구축] 이클립스- jQuery 플러그인 설치하기

출처 : 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>




실행화면