我用下面显示的简单脚本显示一些图像。如何使图像可以点击?
谢谢你!$(function() {
$('.fadein img:gt(0)').hide();
setInterval(function() {
$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
}, 4000);
});
答案 0 :(得分:0)
$(function() {
$('.fadein img:gt(0)').hide();
$('.fadein img:gt(0)').click(function() {
window.location.href = 'http://www.google.com';
});
setInterval(function() {
$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
}, 4000);
});
答案 1 :(得分:0)
当然,当您点击图片时,您需要决定做什么,但是:
$('.fadein').delegate('img', 'click', function() {
var clickedImg = this;
// your code
});