IE8에 대한 부트 스트랩 캐로 셀 지원을 수정 중입니다. 크롬과 FF에서는 작동하지만 IE 8에서는 작동하지 않습니다. 페이드 인으로 바뀔 것입니다. 왜 그런지 알고 있습니까?JQuery addClass fadeIn fadeOut이 IE8에서 작동하지 않습니다.
<style>
.carousel .activerow {display: none;}
.carousel .row { left: 0; opacity: 1; }
</style>
/*I have many rows of data in the dom
They are not visible until'active' class
is added.
This code is binded to a link
*/
var activeset = $active; //contains the contents of current row
var nextset = $next; //contains contents of the next
$active.fadeOut('slow', function() {
activeset.removeClass('activerow');
nextset.addClass('active');
nextset.fadeIn('slow');
});
콘솔에 아무것도 표시되지 않습니까? – Sampson
콘솔에 오류가 없습니다 – River