Friday, September 22, 2006
HTML/자바스크립트] 현재 페이지 주소 얻기/출력 - JavaScript Current Page URL
다음과 같은 자바스크립트로, 현재 페이지의 주소, 즉 브라우저 주소창의 주소(URL)를 얻을 수 있습니다.
location.href 속에 현재 주소가 들어 있습니다.
예를 들어, 위의 자바스크립트 코드가 들어 있는 페이지의 주소가
https://www.example.com/test.html
이라면, 화면에는
이렇게 출력됩니다.
<script type="text/javascript">
// 곧바로 현재 페이지 주소 출력
document.writeln(location.href);
// 변수에 넣어서 출력
var s = location.href;
document.writeln(s);
</script>
// 곧바로 현재 페이지 주소 출력
document.writeln(location.href);
// 변수에 넣어서 출력
var s = location.href;
document.writeln(s);
</script>
location.href 속에 현재 주소가 들어 있습니다.
예를 들어, 위의 자바스크립트 코드가 들어 있는 페이지의 주소가
https://www.example.com/test.html
이라면, 화면에는
https://www.example.com/test.html https://www.example.com/test.html
이렇게 출력됩니다.
tag: html
HTML | CSS | 자바스크립트 JavaScript
<< Home