3

私はこのjQueryコードを持っています:

nextimg = $('.index-slide-container img#' + next);
nextcaption = $('.index-slide-container .index-slide').filter('#'+next);

nextimg.css({
    'left':'100%',
    'z-index':'99'
});
nextcaption.css({
    'left':'100%',
    'z-index':'99'
});

どうにかして 2 つの .css 関数を 1 つに結合/連鎖できるかどうか知りたいですか?

4

1 に答える 1

3

jQueryadd()関数を使用できます。

nextimg.add(nextcaption).css({
    'left':'100%',
    'z-index':'99'
});
于 2013-04-16T09:02:42.347 に答える