Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 위치 경로 이름 속성

<시간/>

위치 경로 이름 속성은 URL 경로 이름에 해당하는 문자열을 반환/설정합니다.

구문

다음은 구문입니다 -

  • 경로 이름 의 반환 값 재산
location.pathname
  • href 속성 집합의 값
location.pathname = pathOfHost

예시

위치 경로 이름의 예를 살펴보겠습니다. 속성 -

<!DOCTYPE html>
<html>
<head>
<title>Location pathname</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Location-pathname</legend>
<label for="urlSelect">Current URL:</label>
<input type="url" size="30" id="urlSelect" value="https://www.example.com:2544/aboutUs/CTO.htm">
<input type="button" onclick="getpathname()" value="Get pathname">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var urlSelect = document.getElementById("urlSelect");
   function getpathname(){
      divDisplay.textContent = 'URL pathname: '+location.pathname;
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

'경로 이름 가져오기'를 클릭하기 전에 버튼 -

HTML DOM 위치 경로 이름 속성

'경로 이름 가져오기'를 클릭한 후 버튼 -

HTML DOM 위치 경로 이름 속성