여러 개의 회전 목마 (올빼미 회전식 캐 러셀)를 사용하는 페이지가 있으며 각 페이지에는 이전/다음과 같은 탐색 기능이 있습니다. 그 중 일부는 캐 러셀로 고려해야 할 항목이 충분하지 않으므로이 항목에 대한 탐색을 비활성화하고 싶습니다. 구조의 모양을캐 러셀 탐색 각 기능
<div class="videos-wrap">
<div class="owlnav owlnav1"><div class="owl-prev" style=""><</div><div class="owl-next" style="">></div></div>
<div class="video-carousel"></div>
<div class="video-carousel"></div>
<div class="video-carousel"></div>
</div>
<div class="videos-wrap">
<div class="owlnav owlnav1"><div class="owl-prev" style=""><</div><div class="owl-next" style="">></div></div>
<div class="video-carousel"></div>
</div>
... 나는 그런
$(".videos-wrap").each(function() {
var n = $(".video-carousel").length;
if (n < 3) {
$('this .owlnav').css('display', 'none');
}
등 여러 가지 일을하려고 한
});
하지만 작동하지 않습니다.
아이디어가 있습니까?
당신의 도움을위한 Thxs
문제에 대해 더 spesific하십시오. "작동하지 않는 것은 무엇입니까?" 방법? 그 js 코드로 무엇을하려하고 있으며 무엇을 얻고 있습니까? 예기치 않은 결과가 있습니까? 오류? – Sefa
예 : 변경하면 작동하는지 확인할 수 있습니다. –
위대한 아이디어지만, 효과는 3 개 이상의 항목이 있어도 모든 탐색이 비활성화된다는 것입니다. ($ this() .find ('. owlnav') .css ('display', 'none'); 슬라이더. 어쩌면 각각은 올바른 기능이 아닙니다. 내 끔찍한 영어가 아닌 설명서를 이해할 것입니다. – nodibb