웹언어/jQuery2012. 3. 5. 13:31
이클립스 실행

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>



실행화면


'웹언어 > jQuery' 카테고리의 다른 글

Hello jQuery!  (0) 2012.03.19
Drag & Drop  (0) 2012.03.19
선택자 - DOM  (0) 2012.03.14
[JQuery]슬라이드(Slider Kit, Sliding contents)  (0) 2012.03.07
$(document).ready 와 $(window).load  (0) 2012.03.05
Posted by 건깡