我正在使用 .slideToggle 在单击图像时显示/隐藏内容,当内容显示时它会更改一次,但在再次单击以隐藏内容时不会变回原始图像,不太确定我在做什么在这里失踪。非常感谢任何帮助。
jQuery:
$(document).ready(function() {
$('#toggle1').click(function() {
$('.toggle1').slideToggle('1100');
$("#bg").attr('src',"images/box-arrow-down.jpg");
return false;
});
的HTML:
<div class="box">
<div style="width:1100px;height:100px;margin-left:40px;">
<span style="float:left;"><a href="#" id="toggle1"><img src="images/box-arrow-up.jpg" height="16" width="17" alt="arrow" id="bg" style="margin-top:40px;" /></a></span>
</div>
<div class="toggle1" style="display:none;width:1100px;padding:0px;margin-left:8px;">
<div class="boxTime">09:00</div>
</div>
</div>