スクリプトで children() および slice() メソッドを使用しています。この方法を使用せずに別の方法が必要です。
これは私が試したことです:
スクリプトで children() および slice() メソッドを使用しています。この方法を使用せずに別の方法が必要です。
これは私が試したことです:
すべての子を非表示にしてから一部を表示するのではなく、不要な子のみを非表示にします。
$('#thumbs').children().filter(function(index) {
return (index < newstart || index >= newlimit);
}).hide();
div.video
、次を使用できます.find()
。
$('#thumbs').find(".UiUx3DSSVFlow").filter( /*...*/ ).hide();
このメソッドを使用できますhttp://api.jquery.com/child-selector/
$("ul.topnav > li").css("border", "3px double red");
これにより、 with クラスli
内のを選択できますul
topnav