我有一段 javascript 代码在切换时将#slidingDiv 向下移动。无论如何我可以在其中添加交换图像吗?我需要一个名为#clicktoggleimage 的图像来在同一函数中的图像“/images/show-less-arrow.jpg”和“/images/show-more-arrow.jpg”之间交换。
<script type="text/javascript">
$(document).ready(function() {
$("#slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function() {
$("#slidingDiv").slideToggle(500);
$('html,body').animate({
scrollTop: $("#slidingDiv").offset().top + $('window').height()
}, 1000);
});
});
</script>
非常感谢
皮特