Dado un documento HTML y la tarea es desplazar el documento con la ayuda de jQuery. Hay dos métodos para desplazar la ventana del documento HTML que se analizan a continuación:
Acercarse:
- Seleccione el documento utilizando el selector.
- Utilice cualquiera de los métodos scrollTop() o scrollTo() para mover el documento a esa posición.
Ejemplo 1: Este ejemplo usa el método scrollTop() para desplazar el documento HTML.
<!DOCTYPE HTML> <html> <head> <title> How to scroll window using jQuery ? </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <style> #body { height: 1000px; } </style> </head> <body style = "text-align:center;" id = "body"> <h1 id = "h1" style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> Click here </button> <p id = "GFG_DOWN" style = "font-size: 23px; font-weight: bold; color: green; "> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); el_up.innerHTML = "Click on the button to scroll" + " the document."; function gfg_Run() { $(document).scrollTop(100); el_down.innerHTML = "Position has been set."; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: Este ejemplo usa el método scrollTo() para desplazar el documento HTML.
<!DOCTYPE HTML> <html> <head> <title> How to scroll window using jQuery ? </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"> </script> <style> #body { height: 1000px; } </style> </head> <body style = "text-align:center;" id = "body"> <h1 id = "h1" style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "gfg_Run()"> Click here </button> <p id = "GFG_DOWN" style = "font-size: 23px; font-weight: bold; color: green; "> </p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); el_up.innerHTML = "Click on the button to scroll" + " the document."; function gfg_Run() { window.scrollTo(0, 100); el_down.innerHTML = "Position has been set."; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA