목차
document.URL 예제 - 웹문서 URL 주소 반환
document.URL 정의
document.URL 구문
document.URL 예제 - 웹문서 URL 주소 출력
document.URL 예제 - 웹문서 URL 주소 반환
<button onclick="homzzang()">클릭</button>
<p id="demo"></p>
<script>
function homzzang() {
var x = document.URL;
document.getElementById("demo").innerHTML = x;
}
</script>
결과보기
document.URL 정의
웹문서 URL 주소 반환.
1. cf.
window.location.href (= 또는, location.href)
2.
IE9 이상 주요 최신 브라우저 모두 지원.
3. MDN document.URL 매뉴얼
https://developer.mozilla.org/en-US/docs/Web/API/Document/URL
document.URL 구문
document.URL
[반환값]
프로토콜 (예: https://) 포함한 웹문서의 전체 URL 주소 반환. (※ string 타입)
document.URL 예제 - 웹문서 URL 주소 출력
<p id="demo"></p>
<script>
let url = document.URL;
document.getElementById("demo").innerHTML = url;
// 결과값 예: http://localhost/
</script>
주소 복사
랜덤 이동