<html>
<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>demo</title>
<style type="text/css">
*{margin:0padding:0}
.box{width:300pxheight:30pxbackground:#da251a}
.click1{width:120pxheight:30pxline-height:30pxtext-align:centercolor:#fffbackground:#000margin-bottom:10px cursor:pointer}
.click2{width:120pxheight:30pxline-height:30pxtext-align:centercolor:#fffbackground:#000cursor:pointer}
</style>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
$(".click1").click(function(){
var bHeight=$(".box").height()
bHeight+=30
$(".box").css("height",bHeight)
})
$(".click2").click(function(){
var bHeight=$(".box").height()
bHeight-=30
$(".box").css("height",bHeight)
})
})
</script>
</head>
<body>
<div class="click1">增加</div>
<div class="click2">减少</div>
<div class="box"></div>
</body>
</html>
自己把对应的jq库文件引入下即可。
写的不好,请谅解!
js只能获取到元素的style样式(行内样式),不能获取到css样式。使用jquery可以获取到css样式:
$(function(){
$(".tableStyle").css("background-color":"")
})
将background-color赋为空值就可以啦