Modificare il codice:
Vedi Risultato »
Prova tu stesso - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
The full URL of this document is:
<
br
>
<
span
id
="demo"
>
<
/span
>
.
<
/p
>
<
script
>
document.getElementById(
"demo"
).innerHTML = document.URL
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>The full URL of this document is: <br><span id="demo"></span>.</p> <script> document.getElementById("demo").innerHTML = document.URL </script> </body> </html>