我正在使用 codeigniter 并尝试使用带有 jQuery 的 Ajax 调用来获得结果。我有一个选择框,其中从数据库中填充选项,如下所示:
echo "<select id=\"agent_select\" name =\"agent_select\" >";
echo "<option id=\"0\" value=\"0\" selected=\"selected\">Select Agent Name</option>";
$rs=$this->Model_ocperformance->get_all_activeusers_except($this->session->userdata('id'));
foreach($rs->result() as $row){
echo "<option id=\"".$row->id."\" value=\"".$row->id."\" >".$row->name."</option>";
}
echo "</select>";
echo "<div id=\"results\">
</div>";
我的 JQuery 脚本是这样的:
$(document).ready(function(){
$("#agent_select").change(function(){
$.ajax({
type:"POST",
url:"<?=base_url()?>index.php/ajax/find_status",
data:{agent_id:$(this).val()},
success:function(response){
alert("Response: "+ response);},
error:function(){
alert("Failed to retrieve information");
}
});
});
});
当我更改选择框时,它应该调用 ajax 函数并从 ajax/find_status 函数中检索数据。但不幸的是,什么也没发生。我错过了什么或犯了错误吗?