Latest web development tutorials

HTML DOM 자료 href 속성

자료 객체 참조 자료 개체

정의 및 사용

HREF 속성 집합 또는 모든 링크 참조 페이지의 URL을 반환합니다.

문법

baseObject.href=URL


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

모든 주요 브라우저는 href 속성을 지원


다음 예는 페이지의 기본 URL을 리턴한다 :

<html>
<head>
<base id="htmldom" href="http://www.w3cschool.cc/jsref/">
</head>
<body>

<p>Base URL is:
<script>
document.write(document.getElementById("htmldom").href);
</script>
</p>

</body>
</html>

위의 출력의 예 :

Base URL is: http://www.w3cschool.cc/jsref/

»시도


자료 객체 참조 자료 개체