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 support

QQ截图20161108165429.png

All major browsers support URL attributes


Instance

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