<script type="text/javascript">
//点击buttom1 直接隐藏
var i=0;
if(i==0){
$("button:first").click(function() {
$("#a1").hide();
i=1;
})
};
if(i==1){
$("button:first").click(function() {
$("#a1").show();
i=0;
})
};
</script>
直接使用toggle切换的方法 不用这么麻烦
变量赋值是不是应该用var i=1。。。。
dshbdsf