El método stop() en DOM se usa para evitar que la ventana cargue recursos en el contexto de navegación actual, similar al botón de parada del navegador.
Sintaxis:
window.stop()
Ejemplo: detener la carga de la ventana.
<!DOCTYPE html> <html> <head> <title> HTML | DOM Window stop() Method </title> </head> <style> h1 { color: green; } </style> <head> <script> // Stop window loading. window.stop(); </script> </head> <body> <h1>GeeksforGeeks</h1> <p> The stop() method stops this text and the iframe from loading. </p> <iframe src= "https://ide.geeksforgeeks.org/"> </iframe> </body> </html>
Salida:
Sin método window.stop():
Con el método window.stop():
Navegadores compatibles: los navegadores compatibles con el método DOM Window stop() se enumeran a continuación:
- Google Chrome
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ChinkitManchanda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA