我试图在 div 中显示 ajax 响应的值,为此我在我的视图文件中有以下代码。
<script type="text/javascript" src="MY LINK TO JQUERY"></script>
<script type="text/javascript">
$(function(){ // added
$('a.vote').click(function(){
var a_href = $(this).attr('href');
$.ajax({
type: "POST",
url: "<?php echo base_url(); ?>contents/hello",
data: "id="+a_href,
success: function(server_response){
if(server_response == 'success'){
$("#result").html(server_response);
}
else{
alert('Not OKay');
}
}
}); //$.ajax ends here
return false
});//.click function ends here
}); // function ends here
</script>
<a href="1" title="vote" class="vote" >Up Vote</a>
<br>
<div class="result"></div>
我的控制器(ajax 向其发送值):
function hello() {
$id=$this->input->post('id');
echo $id;
}
现在我要实现的是<div class="result"></div>
在我的视图文件中获取 server_response 值(从控制器发送的值)。
我已经尝试了以下代码,但它没有显示 div 内的值。
你能告诉我问题出在哪里吗?