.separatorLine {여기에서 .separatorLine의 경우 CSS에서 Selector라고 부르며 syntax는 다음과 같습니다.
border: 0;
padding: 0;
margin-left: 4px;
margin-right: 2px;
}
출처 : http://www.w3.org/TR/CSS21/selector.html
.separatorLine {여기에서 .separatorLine의 경우 CSS에서 Selector라고 부르며 syntax는 다음과 같습니다.
border: 0;
padding: 0;
margin-left: 4px;
margin-right: 2px;
}
onclick="showPic(this);return false;"return 값을 돌려줌으로 이벤트 헨들러에게 Boolean 값을 넘겨주게 되는데요. 이벤트 헨들러들은 이 값을 받은 다음에 true인 경우 onclick 이벤트가 발생하였다라고 판단하고 동작을 취하며 false인 경우 onclick 이벤트가 발생하지 않았다고 판단하고 동작을 취하지 않습니다.
Why's guide의 한그림?
Web Style : Web Style이란? 다음의 것들로 구성된다.
현재 주어진 element에서 인자로 받은 tagName에 해당하는 하위 element들의 list를 리턴합니다.
return값인 elements들은 하위 element들의 리스트입니다 .parameter인 tagName은 string 형태로 element들의 이름을 나타냅니다. special character로 "*"를 사용하여 전체 element들을 나타낼 수 있습니다. // check the alignment on a number of cells in a table.
table = document.getElementById("forecast-table");
cells = table.getElementsByTagName("td");
for (var i = 0; i < cells.length; i++) {
status = cells[i].getAttribute("status");
if ( status == "open") {
// grab the data
}
}
element에서 사용되는 getElementsByTagName는 탐색 시 자신의 하위 element들에만 접근할 수 있음을 제외하고는 document에서 사용되는 getElementsByTagName와 동일합니다.
FTP
Description
The ftp task 어쩌구 저쩌구....
Note: This task depends on external libraries not included in the Ant distribution.See Library Dependencies for more information.
...
글 초반에 보면 Note와 함께 <ftp>를 쓰려면 외부 라이브러리를 다운 받아야 한다는 메시지가 나온다. 아래의 Library Dependencies에 들어가면 commons-net.jar가 나온다. network와 관련된 공통모듈이니 다운받아야 한다. (클릭해서 들어가면 Download가 잘 안보일 것이다. 자세히보면 Documentation아래에 Download 메뉴가 있다.)