Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
10 個のリンクのリストがあり、最初の 4 個以降のすべてのリンクを選択したい場合、どうすればよいですか?
私は見ていまし:eq()たが、範囲ではなく特定であるため、それは私の問題を解決していないようです。
:eq()
似たようなものを探してください$("a:eq(>4)")。意味があることを願っています。
$("a:eq(>4)")
:gtセレクターを使用できます:
:gt
$('a:gt(3)');
を使用しsliceます。速いです。
slice
$('a').slice(4);