Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
La propiedad Window.URL
devuelve un objeto que proporciona métodos estáticos usados para crear y gestionar objetos de URLs. Además puede ser llamado como un constructor para construir objetos URL
.
Sintaxis
Llamando a un método estático:
img.src = URL.createObjectURL
(blob);
Construyendo un nuevo objeto:
var url = new URL
("../cats/", "https://www.example.com/dogs/");
Especificación
Especificación | Estado | Comentario |
---|---|---|
URL The definition of 'URL' in that specification. |
Living Standard | Definición inicial |
Compatibilidad con navegadores
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Soporte básico | 8.0[2] | 4.0 (2.0)[1] 19.0 (19.0) |
10.0 | 15.0[2] | 6.0[2] 7.0 |
Característica | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Soporte básico | (Yes)[2] | 14.0 (14.0)[1] 19.0 (19.0) |
(Yes) | 15.0[2] | 6.0[2] |
[1] Desde Gecko 2 (Firefox 4) hasta Gecko 18 incluidos, Gecko devuelve un objeto con el tipo interno no estandar nsIDOMMozURLProperty
. En la práctica, esto no hace ninguna diferencia.
[2] Implementado bajo el nombre no estandar webkitURL
.