标签:code http htm .com this color func doc tle
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<title>
jquery点击div 先变大再缩小
</title>
<script>
$(function(){
$("div").toggle(function(){
$(this).css({
"width":"900px",
"height":"500px",
"position":"absolute",
"top":"0",
"left":"0"
});
},function(){
$(this).css({
"width":"200px",
"height":"200px",
});
});
})
</script>
</head>
<body>
<div style="background-color:blue">
点击
</div>
</body>
</html>
标签:code http htm .com this color func doc tle
原文地址:http://www.cnblogs.com/Yoko-815/p/7357987.html