0

我想发出一个ajax请求,它不会工作。这是我的代码:

function loadSingleProductPaso1(div_loading,div_id,index, json,ajaxurl){
$.ajax({
    type: "POST",  
    url: ajaxurl, //the url is http://www.mysite.com/controller/function
    data: "ajax=true&precio="+JSON.parse(json[index]).miprecio,
    success: function(msg){
             ...
            } 
    }
});  

}

问题是,当我添加一个“?” 到数据元素(数据:“?ajax=true&...”),它工作,但发送一个 $_POST['?ajax'] 变量。

我真的不明白我在做什么错。

4

1 回答 1

0

你可以使用post功能,

像这样,

$.post(ajaxurl, {
   name : "Test",
   city : "Istanbul"
}, function(data){
   if(data == 1){
       alert("success!");
   }
});

function ajax(){
    if($this->input->post('name') == "Test"){
        echo 1;
    }
}
于 2012-04-12T15:09:31.843 回答