JQuery sets the width and height of webpage Elements
This article mainly introduces jQuery's method of setting the width and height of a webpage element. It involves jQuery's skill in width and height operations and has some reference value. If you need it, you can refer
This example describes how jQuery sets the width and height of a webpage element. Share it with you for your reference. The specific implementation method is as follows:
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<! 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 help you with jQuery programming.