Click en el botón para ver el link de la página actual
Instrucciones Javascript
Contenido de innerHTML de elemento identificado por id="h2": < h2 id="h2">La fecha y la hora son:< /h2 >
Siendo el resultado: La fecha y la hora son:
Contenido de outerHTML de elemento identificado por id="h1": < h1 id="h1">< /h1 >
< h1 >< font size="5" > < b >Elsi Amaya < /b > < /font > < /h1 > Siendo el resultado: Elsi Amaya
Contenido de de la propiedad global: location.href: < div id="sections" >
< p >< font color="#cc99ff">< b >Click the button to display the entire URL of the current page.< /b >< /font >< /p >
< button onclick="myFunction()">Click aquí< /button>
< p id="demo">< /p >
< script >
function myFunction() {
var x = location.href;
document.getElementById("demo").innerHTML = x;
}
< /script >
< /div >
Siendo el resultado:
Contenido de de la propiedad global: location < script type="text/javascript" >
var fecha = new Date();
var msj;
if (fecha.getHours() < 7) { msj = "Buenas noches";}
else if (fecha.getHours() < 12) { msj = "Buenos días";}
else if (fecha.getHours() < 21) { msj = "Buenas tardes";}
else { msj = "Buenas noches";}
document.getElementById("h1").innerHTML = msj;
document.getElementById("fecha").innerHTML = fecha;
< /script > Siendo el resultado (ejemplo): La fecha y la hora son:
Tue Apr 26 2016 12:09:50 GMT-0600 (Hora estándar, América Central)
Contenido de de las propiedades globales: screen.width y screen.heigth: Total width/height: 1366*768