JavaScript Reference/Javascript Properties/pathname

Материал из Web эксперт
Перейти к: навигация, поиск

"pathname" Example

   <source lang="javascript">
   

<html> <body> <script language="JavaScript">

   function function1() {
      alert(document.getElementById("myLink").pathname);
   }

</script> <a id="myLink" href="http://www.wbex.ru" target="_blank">wbex.ru home page</a> <input type="Button" id="myB" value="File and path to the page" onClick="function1();"> </body> </html>


     </source>
   
  


"pathname" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<a> <area> | | |location | +----------------+--------------------------------------------------------------+

     </source>
   
  


"pathname" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Sets the object path name.

Syntax:

document.getElementById("elementID").pathName = value document.all.elementID.pathName = value // IE only location.pathName


     </source>