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.
私は7つのセルとたくさんの行を持つテーブルを持っています。1、5、6を除くすべてを選択したい。
私は試した:
$('table td:not(eq(5-6)):not(eq(1));
しかし、それはうまくいきませんでした。
試す:
$('table td:not(:eq(1)):not(:eq(5)):not(:eq(6))');
また:
$('table td:not(:eq(1),:eq(5),:eq(6))');