在点击上替换图像源

时间:2011-06-06 02:17:49

标签: jquery

Firts noob,

我有这个脚本......

$.backstretch( img, options, callback );

我需要对此进行编码,使得图像源是一个变量,在点击缩略图时会被替换,图像链接与该缩略图相关联。

此外,还需要删除上一张图片,因为如果不删除上一张图片,此脚本会将图像聚集在一起。

非常感谢任何帮助。

请记住这里的noob ...请使用虚拟对话。

1 个答案:

答案 0 :(得分:0)

这应该有用..

$('img#id').click(function () {
    this.src = "new/image.jpg"; // `this` refers to the image clicked.
});