0

我从数据库中获取城市列表,我想在编辑操作时显示选定的城市。

我正在使用 Ajax 从数据库中获取值。那是工作得很好。我从我的控制器获得响应数据。现在问题是我无法在 selectpiker 上设置值。我在 Ajax 响应中得到城市名称。

我尝试了一些示例,但没有奏效。

这是 Ajax 代码。

    $.ajax({  
     type: "GET",
     url: urlForGetCityList,             
     dataType: 'Json',                
     success: function(response){ 
         console.log(response.cityName);

          // This is What i Tried For getting SeletBox Selected.
         var $select = $('#city');
         $select.val(response.city).trigger('change');

         // I have also Tried Some Selct2 Option for it. But it didn't work.
         $("#city").select2("val", response.city);

        // And at Last I have tried for like simple select box.
        $("#city").val(response.city);

    });

这些都不能正常工作。这是 Selectpiker 的 HTML 代码。

<div class="col-md-4">
<div class="form-group">
    <label for="field-3" class="control-label">City *</label> 
    <select class="selectpicker" data-live-search="true" data-style="btn-white" name="city" id="city"
        title="Select City">
        <option value="city1">City 1</option>
        <option value="city2">City 2</option>
    </select>
</div>
</div>
4

1 回答 1

1

你已经达到一半你是个问题,只是这个选择 piker 没有显示选定的值,因为这样你应该检查this。所以试试这个。

$('select[name=city]').val(response.city);
$('.selectpicker').selectpicker('refresh');
于 2017-05-31T04:27:17.813 回答