我试图在使用 jquery 切换时使用 replace 命令更改图像。基本上显示一个向下的箭头,在显示内容后变为向上的箭头。以下代码有效,但向下箭头没有被替换。
<img src="/images/arrow_down.png" id="#1" class="nav-toggle">
<div id="1" style="display:none">some content</div>
这是jQuery代码
jQuery('document').ready(function($) {
jQuery('.nav-toggle').click(function() {
var collapse_content_selector = $(this).attr('id');
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function() {
if ($(this).css('display') == 'none') {
} else {
toggle_switch.attr("src").replace("down", "up");
}
});
});
});