テキストボックスの値に基づいて選択ボックスの値を変更したい提案をリストに表示するためにjqueryオートコンプリートを使用しています。提案を選択すると、テキストボックスの値になります。ここでは、テキストボックスの値に基づいてdiff状態の名前を表示します。テキストボックスの値に基づいて選択ボックスの値を動的に変更する方法
マイコード:
<div class="form-group">
<label>Country*</label>
<span class="span_error"><?=$error_username;?></span>
<input name="emp_country" type="text" class="form-control" id="emp_country" placeholder="Employee Country" value="" onchange="getstate(this.value);">
</div>
<div id="countryList"></div>
</div>
私はここにオートコンプリートを生成するn個の国のリストに提案を表示すると、これは偉大な働いているメートル。
選択ボックスHTML:
<div class="form-group">
<label>State*</label>
<span class="span_error"><?=$error_username;?></span>
<select name="ddl_state" size="1" class="form-control" id="ddl_state">
<option value="" disabled='' selected=''>Select State</option>
</select>
</div>
私は上記のテキストボックスに指定した国の名前のデフ状態の名前を表示したい
Javascriptを:
function getstate(contry)
{
alert(contry);
$.ajax({
type:"POST",
url:"getdata.php",
data:{contry:contry},
success:function(data) {
$('#ddl_state').html(data);
}
});
}
PHP:
if (isset($_POST['contry'])) {
$contry = $_POST['contry'];
get_country_state($contry);
}
function get_country_state($contry)
{
$sql = "Select count_id from countries where count_name='$contry'LIMIT 1";
$result = mysql_query($sql);
$row = mysql_fetch_array(result);
$country_id = $row['count_id'];
$sql_state = "select * from states where count_id='$country_id'ORDER BY state_name";
$result_state = mysql_query($sql_state);
if ($result_state) {
// code...
$output='<option value="">Select State</option>';
while ($ro = mysql_fetch_array($result_state)) {
// code...
$output .= '<option value="' . $ro["state_id"] .'">'.$ro["state_name"] . '</option>';
}
echo $output;
} else {
echo mysql_error($db);
}
}
それはあなたの質問への答えではないですが、あなたはこの質問に私の答えをチェックアウトする場合がありますさまざまな国、州、地理的な場所に対応していますか?](http://stackoverflow.com/questions/26069761/dynamic-drop-down-list-for-different-countries-states-geographic-locations/26076664#26076664)これには、達成しようとしているもののための完全に機能するスクリプトが含まれています。 – icecub
jQueryコールを投稿してください。 jQueryのオートコンプリートの変更イベントを利用することができます。http://api.jqueryui.com/autocomplete/#event-change – Webomatik