1. シンプルなボタンの JS イベントを使用してプロンプトを判断し表示します
2. ドロップダウン リストの処理
function dropTypeChange()
{
var sel = $("#<%=dropType.ClientID %>option:selected").val();
if(sel== "-1")
{
$("#<%=txtNo.ClientID %>").attr('disabled',true);
else
{
$("#<%=txtNo.ClientID %>").attr('disabled',false);
}
}
/ /最初のオプションの値を取得します
$('#test option:first').val();
//最後のオプションの値
$( '#test option:last'). val();
//2 番目のオプションの値を取得します
$('#test option:eq(1)').val(); /選択された値を取得します
$ ('#test').val();
$('#test option:selected').val(); //値 2 のオプションを次のように設定します選択された状態
$('# test').attr('value','2');
//選択される最初のオプションを設定します
$('#test option:last') .attr('selected','selected' );
$("#test").attr('value' , $('#test オプション:last').val()); "#test").attr('value ' , $('#test option').eq($('#test option').length - 1).val()); //長さを取得するof select
$('#test option ').length;
// オプションを追加します
$("#test").append("
").appendTo("#test");
//選択した項目の追加と削除
$('#test option:selected').remove();
//指定された項目が選択されています
$('#test option:first').remove();指定された値が削除されます
$('#test option') .each(function(){
if( $(this).val() == '5'){
$(this)。 Remove();
}
});
$('#test option[value=5]').remove();
//最初のグループのラベルを取得します
$('#test optgroup:eq(0)').attr ('label');
//2 番目のグループの最初のオプションの値を取得します
$('#test optgroup:eq(1) ) :オプション:eq(0)').val();