height
?? [ha?t] ?? [ha?t]
n.??, ??;
jquery ??() ??? ???
??: height() ???? ???? ??? ??? ????? ?????.
?? ??: ? ??? ???? ??? ??? ?????. ? ???? ??? ??? ??? ???? ??? ??(?? ??)? ?????.
??: ??$(selector).height()
?? ??: ???? ?? ??? ??? ?????.
??: ??$(selector).height(length)
????:
Parameters | Description |
length | ?? ?????. ??? ??? ?????. ?? ??? ???? ??? ?? px ??? ?????. |
??? ???? ?? ??: ??? ???? ???? ?? ??? ??? ?????.
??: ??$(selector).height(function(index,oldheight))
????:
Parameters | Description |
function(index,oldheight) | ?? ?? ??? ??? ? ??? ?? ?????. |
index | ????. ??? |
oldvalue | ? ??? ??? ?????. ???? ?? ?? ?????. |
jquery ??() ??? ?
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".btn1").click(function(){ $("p").height(50); }); }); </script> </head> <body> <p style="background-color:yellow">This is a paragraph.</p> <button class="btn1">改變高度</button> </body> </html>
??? ????? ??? "???? ??" ??? ?????