일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 웹 스터디
- ipTIME
- reactor core
- reactive
- Spring Framework
- reactor
- Spring Batch
- spring reactive
- 웹앱
- 공유기 서버
- 서버운영
- 웹 커리큘럼
- Today
- Total
Hello World
Definition and Usage join() method는 string에 배열의 모든 element들을 합치고 string을 반환한다. element들은 명시된 separator(분리자)에 의해 분리되어 진다. default separator는comma (,)이다. Syntax array.join(separator)
1. document.write() 란 ? - Writes a string into the document stream. The open method opens the output stream for writing. When the document stream is opened, the write and writeln methods can be used to write some content into the document. If the document was opened by the open method, the close method must be used to close the output stream. Note: while the document is loading, the document str..
먼저 window와 document 객체의 차이점 부터 알아보겠다. - window는 document의 부모객체로서 브라우저 자체를 의미할 수 있으며 접근할 수 있는 자식객체로는 document, self, nvigator, screen, forms, history, location 등이 있다.- document 객체는 트리형태의 HTML 을 접근할 수있는 객체다. $(window).load(function(){ // code}); ⇒ 모든 include 되는 프레임들과 object들, 이미지까지 로드된 이후에 실행된다. window를 로드하고 난 후 이후에 실행되는 코드들은 모든 객체나 프레임들, 이미지까지 로드한 이후에 실행되므로 document에서 제한된 작업을 진행할 수 있다.단, 페이지의 로드타..