최신 웹 개발 튜토리얼
 

위치 HREF 속성

위치 객체 참조 위치 개체

(현재 페이지) 전체 URL을 반환합니다 :

var x = location.href;

x의 결과는 다음과 같습니다

»그것을 자신을 시도

자세한 내용은 아래 예 "자신을보십시오."


정의 및 사용

HREF 속성을 설정하거나 현재 페이지의 전체 URL을 반환합니다.


브라우저 지원

재산
href

통사론

HREF 속성을 반환합니다 :

location.href

HREF 속성을 설정 :

location.href= URL

속성 값

Value Type Description
URL String Specifies the URL of the link.

Possible values:

  • An absolute URL - points to another web site (like location.href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like location.href="default.htm")
  • An anchor URL - points to an anchor within a page (like location.href="#top")
  • A new protocol - specifies a different protocol (like location.href="ftp://someftpserver.com", location.href="mailto:[email protected]" or location.href="file://host/path/example.txt")

기술적 세부 사항

반환 값 : 프로토콜을 포함하여 페이지의 전체 URL을 나타내는 문자열 (HTTP 등 : //)

예

더 예

다른 웹 사이트를 가리 키도록 href가 값을 설정합니다 :

location.href = "http://www.cnn.com";
»그것을 자신을 시도

페이지 내에서 앵커를 가리 키도록 href가 값을 설정합니다 :

location.href = "#top";
»그것을 자신을 시도

(열고 새 전자 메일 메시지를 작성합니다) 이메일 주소를 가리 키도록 href가 값을 설정합니다 :

location.href = "mailto:[email protected]";
»그것을 자신을 시도

위치 객체 참조 위치 개체