想要将图像链接到外部链接,我会说它在 .wrap 中,但似乎无法开始工作。我检查了大部分问题,但我尝试的一切都无济于事。
var photos = [
{ file: 'image1.png', tag: 'search', href: 'http://www.googl.com'},
{ file: 'image2.png', tag: 'search', href: 'http://www.bing.com'},
{ file: 'image3.png', tag: 'search', href: 'http://www.yahoo.com' }
];
var photoCount = photos.length;
var pageItems = [];
for (var i = 0; i < photoCount; i++) {
if (photos[i].tag != tag && tag != 'all') {
continue;
}
var img = $('<img></img>')
.attr('src', 'static/images/tv/' + photos[i].file)
.addClass('slider-photo');
pageItems.push({item: img,caption: descDiv});
}