动态改变图像源 - jQuery

时间:2012-07-24 23:51:48

标签: jquery

我收到了以下代码:

HTML

<div class="image">
    <img src="http://ecx.images-amazon.com/images/I/41ghiuvjdvL._SL75_SS50_.jpg" />
</div>

<br />

<div class="photo">
    <img src="http://profile.ak.fbcdn.net/hprofile-ak-ash2/27520_119569768054263_2432_q.jpg" />
</div>​

JS

// getting src of bottom image
var bottomSrc = $(".photo img").find("src");

// getting src of top image
var topSrc = $(".image img").find("src");

$(".photo").click(function() {
    // changing sources
    // topSrc.attr("src", bottomSrc);
    // topSrc.replaceWith(bottomSrc);
    topSrc.replace(bottomSrc);
})​

Fiddle

单击底部图像时,我希望顶部图像的src替换为底部图像的src,以便两个图像都相同。

为什么提供的代码不起作用?

2 个答案:

答案 0 :(得分:4)

试试这个:

$(".photo").click(function() {
    var src=$(this).children("img").attr("src");
    $(".image img").attr("src",src);
})​;

答案 1 :(得分:0)

Try this

你需要使用jQuery中的attr()函数来获取和设置src属性