jQuery sets the method to specify the width and height of a web page element

  • 2020-05-19 04:06:16
  • OfStack

This example demonstrates how to set jQuery to specify the width and height of a web page element. Share with you 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 has been helpful to your jQuery programming.


Related articles: