Latest web development tutorials

HTML DOM 지역 호스트 이름 속성

지역의 객체 참조 지역 객체

정의 및 사용

호스트 이름 속성 집합 또는 href 속성 가치 호스트 이름 부분을 반환합니다.

문법

areaObject.hostname=hostname


브라우저 지원

Internet ExplorerFirefoxOperaGoogle ChromeSafari

모든 주요 브라우저는 호스트 이름 속성을 지원


다음 예는 호스트 이름 이미지 맵 "비너스"영역을 반환합니다 :

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
</head>
<body>

<img src="planets.gif" width="145" height="126" usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
</map>
<p>Venus 区域的主机名称:
<script>
document.write(document.getElementById('venus').hostname);
</script>
</p>

</body>
</html>

위의 출력의 예 :

Venus 区域的主机名称: www.w3big.com

»시도


지역의 객체 참조 지역 객체