alert(document.URL);
alert(document.location);
alert(document.location.href);
세가지 다 현재 URL 정보를 얻는스크립트입니다.
document.URL= "http://google.com";
document.location = "http://daum.net";
document.location.href = "http://naver.com";
document.URL에 "http://google.com"을 입력했는데요.
다시 alert(document.URL); 를 작성하여 현재 URL을 확인하여 보면 입력한 값과 다르게, 현재 URL이 나오는 것을 확인할 수 있습니다.
document.location = "http://daum.net";
document.location.href = "http://naver.com";
이 두개는 W3C에 따르면 동일합니다. 입력과 동시에 입력한 주소로 이동하게 됩니다.
'Javascript' 카테고리의 다른 글
Ajax ( 에이잭스, 아작스) (0) | 2016.01.25 |
---|---|
자바스크립트 쿠키 생성 document.cookie (0) | 2015.07.13 |
JQuery의 $(document).ready() 를 JQuery 없이 사용하기 (0) | 2015.07.05 |
제이쿼리 이미지 슬라이드 모음 (0) | 2015.07.03 |
브라우저 식별하기 (Windows 10, IE11, 스파르탄 추가) (0) | 2015.07.03 |