1
2
3
4
5
6
7
8
$("#chkAll").click(function(){
    if($("#chkAll").is(":checked")){
        $("input[name='chkUser']").prop("checked"true);
        }
        else{
        $("input[name='chkUser']").prop("checked"false);
        }
    });
 
cs

chkAll -> 헤더에 있는 체크박스 아이디

 

input type="checkbox" 이고 name ="chkUser" 인 체크박스들을 제어

실행 시 한글이 위와 같이 나와서 

 

 

Window > Preferences 에서

 

을 해도 한글로 나오지 않을때,

 

이렇게 적용 해준다.

 

 

[실행 하면!]

https://www.sublimetext.com/

 

Sublime Text - the sophisticated text editor for code, markup and prose

Available on Mac, Windows and Linux

www.sublimetext.com

노트패드보다 괜찮은 것 같다.

[톰캣 설치]

https://tomcat.apache.org/download-80.cgi

 

Apache Tomcat® - Apache Tomcat 8 Software Downloads

Welcome to the Apache Tomcat® 8.x software download page. This page provides download links for obtaining the latest versions of Tomcat 8.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions

tomcat.apache.org

접속 한다.

 

zip 이나 tar.gz 으로 압축된 톰캣을 다운로드 한다. (C:\ 밑에 압축 해제 하면 C:\apache-tomcat-8.5.XX 폴더에 톰캣이 설치됨)

 

[이클립스에 적용]

+ Recent posts