慕先生8224389
2016-11-23 17:50
<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
jQuery基础(四)—动画篇
85049 学习 · 262 问题
相似问题