0
有2下拉列表:下拉列表Ajax不是工作
- 項目
- 情節詳細
我的問題是:一旦Project
被選中,那麼Plot Details
獲取正確填充,但,當Dropdown的Plot Details
得到選擇,然後Chrome掛斷。
要繼續,我必須刷新頁面。我希望Plot Details
(下拉式)值可以調用另一個ajax調用。
的JavaScript
$(document).ready(function() {
$('.get_member_name').live('change', function() {
alert('hello')
var project = $('#project').val();
var plot_details = $('#plot_details').val();
var base_url = $('#base_url').val();
if (project && plot_details) {
$.ajax({
type: "POST",
url: base_url + "admin/get_member_name",
data: {'category': category},
dataType: "html",
success: function(result) {
alert(result)
}
})
}
});
})
HTML
<div class="form-group">
<label class="col-md-3 control-label" for="inputSuccess">
Plot Details :
</label>
<div class="col-sm-9">
<select class="form-control get_member_name" name="plot_details" required="required" id="plot_details">
<option value="" id="opp12">Select Plot</option>
</select>
</div>
</div>
PHP
public function get_plot_details() {
if ($this->session->userdata('role_id') == 1) {
$data['record'] = $this->db->get_where('plot_details', array('project_id' => $this->input->post('project')))->result();
print_r($this->load->view('admin/ajax_data', $data, TRUE));
} else {
redirect('home/login');
}
}
查看P年齡
if (isset($record) && $record != NULL && $record != "") {
foreach ($record as $m) {
echo '<option value="' . $m->id . '"> ' . $m->plot_number . ' Area ' . $m->total_area . '</option>';
}
}
沒有人可以幫你沒有代碼。 – Deep
k等待我會發布代碼... – user3302950
當我將選擇劇情詳情下拉列表中,然後我已經在js代碼中設置警報,但它沒有迴應任何事情,突然它掛起。 – user3302950