I want to get the src
of one image and set it as another's src
when #btn
is pressed:
jQuery("#btn").live("click", function() {
jQuery("#another_div")
.children("img")
.attr("src", jQuery(this).prev("img").attr("src"));
jQuery(this)
.prev("img")
.attr("src","");
})
I have also tried:
jQuery(this).prev('img').removeAttr("src");
It works fine in Firefox, IE7-9, and Safari.
Only in Chrome, the image is not removed even when the source changes (src=""
).
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…