1. 程式人生 > >23.jquery隱藏和顯示

23.jquery隱藏和顯示

執行函數 clas doctype fun alert style 隱藏和顯示 pla wid

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>jquery的顯示和隱藏</title>
<style type="text/css">
	div{
		width:150px;
		height:100px;
		border:1px red solid;
		display:none; 
	}
</style>
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>
<script type="text/javascript">
	$(function(){
		/* $("input[type=‘button‘]").click(function(){
			//讓div顯示
			$("#divId").show(3000,function(){
				//顯示完畢後執行函數
				alert("aaa");
			});
		}); */
		
		
		/* $("input[type=‘button‘]").click(function(){
			//讓div隱藏
			$("#divId").hide(3000,function(){
				alert("隱藏");
			});
		}); */
		
		
		/* $("input[type=‘button‘]").click(function(){
			//讓div從上到下顯示
			$("#divId").slideDown(3000,function(){
				alert("從上到下顯示。。。")
			});
		}); */
		
		/* $("input[type=‘button‘]").click(function(){
			//讓div從下到上隱藏
			$("#divId").slideUp(3000,function(){
				alert("從下到上隱藏。。。")
			});
		}); */
		
		$("input[type=‘button‘]").click(function(){
			//讓div淡入顯示
			$("#divId").fadeIn(3000,function(){
				alert("讓div淡入顯示")
			});
		}); 
		
	});
</script>
</head>
<body>

<div id="divId">
	我是DIV
</div>
<input type="button" value="點擊"/>
</body>
</html>

  

23.jquery隱藏和顯示