正如标题所说,我正在尝试让一个 div 来显示何时:last
显示,这就是我到目前为止所拥有的
$(function() {
$('#d').hide();
var $images = $('#d1 > .c1 > a').clone(),
$imgShow = 0;
$('#d1 > .c1').html($('#d1 > .c1 > a:first'));
$('#d1 > .c1 > a').click(function(e) {
var $n = $('img', $images).eq(++$imgShow).attr('src');
$(this).children().attr('src', $n);
e.preventDefault();
});
});
</p>
我尝试了:last
点击,但这似乎不起作用(因此它在 jfiddle 中被注释掉)加上让它:last
在视图中显示是一个更好的选择,如何实现?