操作ドロップダウン リスト
オプション リストの追加
$(this).get(0).options.add(new Option(text,value));リスト
$(this).get(0).options.length=0;
指定されたインデックスのオプションを削除します
$(this).get( 0).remove(index);
選択する項目の値を設定します
$(this).get(0).value=value;
現在選択されているオプションのテキスト
$(this).get(0).options[index].text;
CSS を一括変更
$(this)。 css({left:"35px", top:"24px"})
指定した領域の要素を使用不可(グレーアウト)にする
$(this).find(*)。 each(function(){$(this ).attr("disabled",true)});