The example in this article describes how jQuery sets the width and height of a specified web page element. Share it with everyone for your reference. The specific implementation method is as follows:
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").width(500).height(500); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"> </div> <br> <button>Resize div</button> </body> </html>
I hope this article will be helpful to everyone’s jQuery programming.