Language (58) 썸네일형 리스트형 [JavaScript]BOM객체 BOM(Browser Object Model) 말 그대로 브라우저 객체 모델 BOM객체 중에는 Location객체 Navigation객체가 있다. 이런 용도로 사용 되는데, Locaiton객체 1. console.log(location.toString()); location객체의 문자열을 콘솔창에 리턴한다.결과값으로는 작업하고 있는 URL 주소를 출력한다. 2. console.log(location.href); location객체의 href(주소)를 콘솔창에 리턴한다.결과값으로는 작업하고 있는 URL 주소를 출력한다. 3. console.log(location.toString(),location.href);1과 2를 동시에 출력하려면 다음과 같이 실행한다. 4. console.log(location);객.. [JavaScript] Object Model 왜 Object Model을 알아야 하는가? 아래의 HTML 코드를 보자 ... 이전 1 ··· 5 6 7 8 다음