La propiedad Video currentSrc se usa para devolver la URL del video actual . La propiedad Video currentSrc devuelve una string vacía si no se especifica ningún video.
La propiedad VideocurrentSrc es una propiedad de solo lectura.
Sintaxis:
videoObject.currentSrc
El siguiente programa ilustra la propiedad Video currentSrc:
Ejemplo: Obtener la URL del video actual.
<!DOCTYPE html> <html> <head> <title> HTML | DOM Video currentSrc Property <title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Video currentSrc Property</h2> <br> <video id="Test_Video" width="360" height="240" controls> <source src="samplevideo.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> </video> <p> To get the video URL, double click the "Return URL" button. </p> <button ondblclick="My_Video()" type="button"> Return URL </button> <p id="test"></p> <script> function My_Video() { var v = document.getElementById( "Test_Video").currentSrc; document.getElementById("test").innerHTML = v; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: El navegador compatible con HTML | Las propiedades DOM Video currentSrc se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA