HTML DOM URL attributes
HTML DOM URL Properties
Definition and usage
The URL property returns the URL of the current document.
Syntax
document.URL
##Browser supportAll major browsers support URL attributes
Instance
Instance
Running Example»Click the "Run Instance" button to view the online instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> 文档的完整的URL: <script> document.write(document.URL); </script> </body> </html>
Running Example»Click the "Run Instance" button to view the online instance