0

我有一个选择标签,其中选项值来自使用 ajax 的 PHP 数据库。先前选择的值保存在 DB 中。

我想显示一个显示先前选择的值(保存在数据库中)的选择。

这是 HTML 代码

<select id='country'></select>

这是 JS 代码(ajax 获取所有国家/地区列表)

$.ajax({
    url: 'country.php',
    scriptCharset: 'ANSI',              
    success:function(result) {
        $('#country').append(result);
    }
});

假设我想向国家显示哪个值为 27,我该如何实现?

4

3 回答 3

0
$.ajax({
url:"country.php",              
scriptCharset: 'ANSI' ,             
success:function(result){       
    $('#country').append(result);

    // Have you tried add this???
    $('#country').val(27);

   }
});

@谢谢拉胡尔

于 2012-10-19T13:12:50.223 回答
0

用选项再做一次选择,在js中你可以使用onchange重新加载国家列表。

于 2012-10-19T13:13:16.950 回答
0

$.ajax({
url:"country.php",
scriptCharset: 'ANSI' ,
success:function(result){
$('#country').append(result);
$('#country').val(VALUE);
} });

于 2012-10-19T13:26:15.177 回答