跨域操作

跨域操作的jquery代码:

function query2(){

    type = $("#kh_type").val();

if(type==""){

  alert("请选择客户类型");

return false;

}else{

var urls="http://www.abcdef.com/Haha/kuayu/?callback=?";

                        $.getJSON(urls, {type:type},

                       function(data){

                       if(data.status=='true'){

                          alert(data.type);

                    } });}}

后台处理的Php代码:

 public function kuayu(){

       $callback=I("get.callback");

       $type=I("get.type");

       $arr['status']='true';

       $arr['type']=$type;

       $str=json_encode($arr);

       echo $callback."(".$str.")";

    }


你可能感兴趣的:(跨域操作)