0
私は以下のような行IDをカウントを持つテーブルが含まれているIDとのTDを削除:jqueryのIDでこれらtd
を削除何らかの理由でjQueryの偶数
<td class="text-center manage" id="sw-1" rowspan="2" width="20%">
<td class="text-center manage" id="sw-2" rowspan="2" width="20%">
<td class="text-center manage" id="sw-3" rowspan="2" width="20%">
<td class="text-center manage" id="sw-4" rowspan="2" width="20%">
<td class="text-center manage" id="sw-5" rowspan="2" width="20%">
<td class="text-center manage" id="sw-6" rowspan="2" width="20%">
<td class="text-center manage" id="sw-7" rowspan="2" width="20%">
<td class="text-center manage" id="sw-8" rowspan="2" width="20%">
を、私が使用するいくつかの「汚れ」作品をプレイしたいです偶数が含まれている、理想的には出力は次のようになります。
<td class="text-center manage" id="sw-1" rowspan="2" width="20%">
<td class="text-center manage" id="sw-3" rowspan="2" width="20%">
<td class="text-center manage" id="sw-5" rowspan="2" width="20%">
<td class="text-center manage" id="sw-7" rowspan="2" width="20%">
私がしました試み:
$('table td[id*="sw-"]').not(':even').remove();
が、目を付属していません。私が望む結果。
をお伝えください。
'$( 'TR TD:でも')。)(削除' –
@Rory McCrossanさて、あなたは私を啓発、ありがとう!! –