のような値のドロップダウンがあります。使用可能な応答値でドロップダウン値を設定するIN-91
にUS-1
はどうすればよいですかIN-91
IN
値のリストと一致しないため、これは機能しません
$("select#myID option[value='"+myresponse+"']").attr("selected", "selected");
のような値のドロップダウンがあります。使用可能な応答値でドロップダウン値を設定するIN-91
にUS-1
はどうすればよいですかIN-91
IN
値のリストと一致しないため、これは機能しません
$("select#myID option[value='"+myresponse+"']").attr("selected", "selected");
試す
var val="IN"; //example
$("select#myID").find(":contains('"+val+"')").attr('selected', 'selected');
$('#myID option[value^="in"]') // option where the value begins with "in"
.prop("selected", true) // select the last element in the matched list
以下を使用できます
$("select#myID").val(myresponse);
試す、
$("select#myID option:contains(" + myresponse + ")").attr('selected', 'selected');