jQuery實現的點選元素隱藏和顯示

admin發表於2017-03-31

本章節分享一段簡單的程式碼例項,它實現了對指定元素的隱藏和顯示的控制。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
p{
  width:300px;
  height:150px;
  text-align:center;
  line-height:150px;
  background:#CCC;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#hide").click(function(){
    $("#antzone").hide();
  });
  $("#show").click(function(){
    $("#antzone").show();
  });
});
</script>
</head>
<body>
<p id="antzone">螞蟻部落歡迎您</p>
<button id="hide" type="button">隱藏</button>
<button id="show" type="button">顯示</button>
</body>
</html>

上面的程式碼實現了簡單的功能,可能在實際應用中需要的功能是點選一個按鈕實現隱藏和顯示的控制。

具體可以參閱利用jQuery使用一個按鈕實現控制元素的顯示與隱藏一章節。

相關文章