0

のような値のドロップダウンがあります。使用可能な応答値でドロップダウン値を設定するIN-91US-1はどうすればよいですかIN-91IN

値のリストと一致しないため、これは機能しません

$("select#myID option[value='"+myresponse+"']").attr("selected", "selected");
4

4 に答える 4

1

試す

var val="IN";  //example
$("select#myID").find(":contains('"+val+"')").attr('selected', 'selected');

ワーキングデモ

于 2013-08-13T05:47:58.910 に答える
1
$('#myID option[value^="in"]')    // option where the value begins with "in"
    .prop("selected", true)        // select the last element in the matched list

フィドル

于 2013-08-13T05:49:18.537 に答える
0

以下を使用できます

$("select#myID").val(myresponse);
于 2013-08-13T05:44:57.703 に答える
0

試す、

$("select#myID option:contains(" + myresponse + ")").attr('selected', 'selected');

于 2013-08-13T05:49:23.633 に答える