「jQuery入門」セレクトボックス内のoptionタグを削除する
1.セレクトボックスのoptionの数を取得
cpCount = $('#cftLst’).children('option’).length;
2.選択項目を一つだけ削除
$('select#kdfId’).children('option:first-child’).remove();
$('select#kdfId option:first-child’).remove();
3.選択項目を全部削除
$('select#kdfId option’).remove();
$('select#kdfId’).children().remove();