jquery動態設定元素的尺寸程式碼例項

antzone發表於2017-04-06

在實際應用中可能需要動態設定元素的尺寸,當然這是最為基礎的操作。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#antzone{
  width:200px;
  height:100px;
  background:green;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#bt").click(function(){
    $("#antzone").height("300px");
    $("#antzone").width("500px");
  })
});
</script>
</head>
<body>
<div id="antzone"></div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼實現了我們的要求,程式碼非常的簡單,更多內容可以參閱相關閱讀。

相關閱讀:

(1).click事件可以參閱jQuery click事件一章節。

(2).height()方法可以參閱jQuery height()一章節。

(3).width()方法可以參閱jQuery width()一章節。

相關文章