appendTo $(this)语句

时间:2015-10-12 03:20:04

标签: javascript jquery

我很难尝试将下一张图片附加到.thumbwrap,这是appendTo $(此)

的最佳途径
$('.thumbwrap').each(function (index, el) {
    $(this).find('img:gt(0)').hide();
    $(this).hover(function () {
            timer = setInterval(function () {
                $(this).find(':first-child').fadeOut(0)
                    .next('img')
                    .fadeIn(0)
                    .end()
                    .appendTo(el);
            }, 1000);
        }, function () {
            clearInterval(timer);
        },
        function () {

        });
});

0 个答案:

没有答案