我有一个 jquery 函数。单击 div class='open',它将打开另一个会话,按钮将更改图像。我为css切换id
但是,当我再次单击它时,我需要将按钮的图像改回来。
<script type="text/javascript">
$(document).ready(function(){
$(".content").hide();
$(".open1").click(function(){
$(this).next().slideToggle(400);
$('#btn_01').attr('id','btn_01_on');
});
});
</script>
<style>
#btn_01{width:510px; height:109px; background:url('images/btn_01_on.png') no-repeat;}
#btn_01:hover{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}
#btn_01_on{width:510px; height:109px; background:url('images/btn_01_over.png') no-repeat;}
</style)