JavaScript Reference/Javascript Properties/URL

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

"URL" Example

   <source lang="javascript">
   

<html> <body> <button onclick="alert(document.URL);">URL</button> </body> </html>


     </source>
   
  


"URL" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |document | +----------------+--------------------------------------------------------------+

     </source>
   
  


"URL" Syntax and Note

   <source lang="javascript">

Note: Read-only property. Returns the document URL.

Syntax:

document.URL


     </source>