Objeto de documento, las propiedades y el método/ función asociada a ella!
Propiedad | Descripción | Ejemplo |
linkColor | Propiedad "linkColor" is used to set/get value of link attribute of body tag. |
Para Obtener el código: var dd = document.linkColor; Para configurar el código: document.linkColor = "afefaa"; Test |
lastModified | Propiedad "lastModified" is used to get the time at which the document or web page was last modified. |
Para Obtener el código: var dd = document.lastModified; Test |
referrer | Propiedad "referrer" is used to get the url or link of the referrer document or web page from which the user has reached this page. |
Para Obtener el código: var dd = document.referrer; Test |
title | Propiedad "title" is used to set or get title of the document using javascript. |
Para Obtener el código: var dd = document.title; Para configurar el código: document.title = "test title"; Test |
url | Propiedad "url" is used to get the url string of current page or document. |
Para Obtener el código: var dd = document.url; Test |
vlinkColor | Propiedad "vlinkColor" is used to get/set the "visited link" color attribute of body tag. |
Para Obtener el código: var dd = document.vlinkColor; Para configurar el código: document.vlinkColor = "afafdd"; Test |