在这里,我正在尝试创建一个图片库:http: //jsfiddle.net/L7yKp/1/
var xml = "<rss version='2.0'><channel> <image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image> <image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image> <image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image> <limage>http://images1.videolan.org/images/largeVLC.png</limage> <limage>http://images1.videolan.org/images/largeVLC.png</limage> <limage>http://images1.videolan.org/images/largeVLC.png</limage> </channel></rss>",
xmlDoc = $.parseXML( xml ),
$xml = $( xmlDoc ),
$image= $xml.find( "image" );
$limage = $xml.find("limage");
$( "#thumbs" ).append( $image.map(function(){
return $('<img>', {className: 'thumbnails', src:$(this).text()})[0];
}));
$( "#panel" ).append( $limage.map(function(){
return $('<img>', {className: 'largeimages', src:$(this).text()})[0];
})
);
我必须在单击缩略图时显示更大的图像。因此,在单击每个缩略图时,将显示相应的较大图像。我需要帮助。