私はこれを持っています:
if(currentSlide !== 3) {
$('#chapterBackground.intro').fadeOut(100);
}
if(currentSlide !== 4) {
$('#chapterBackground.intro').fadeOut(100);
}
...そして、本質的に currentSlide が 3 でも 4 でもない場合は、fadeOut 関数を実行します。
私はこれを持っています:
if(currentSlide !== 3) {
$('#chapterBackground.intro').fadeOut(100);
}
if(currentSlide !== 4) {
$('#chapterBackground.intro').fadeOut(100);
}
...そして、本質的に currentSlide が 3 でも 4 でもない場合は、fadeOut 関数を実行します。
if((currentSlide !== 3) || (currentSlide !== 4)) {
$('#chapterBackground.intro').fadeOut(100);
}
お詫び、編集しました。
単一の条件内でOR演算子を使用できます。if
if(currentSlide !==3 || currentSlide !==4) {
$('#chapterBackground.intro').fadeOut(100);
}
どうぞ:
if(currentSlide !== 3 || currentSlide !== 4) {
$('#chapterBackground.intro').fadeOut(100);
}
||
「OR」という意味です。「AND」の場合は、&&
演算子を使用します ;)
if(currentSlide !== 3 || currentSlide !== 4) {
$('#chapterBackground.intro').fadeOut(100);
}