ajax 跨域请求

Posted 蚂蚁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 跨域请求相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">
$.ajax({
    type:‘get‘,
    url:"http://www.xxx.com/oep-new/index.php/cast/upcast/"+val,
    dataType:‘jsonp‘,
    // async: false,
    //beforeSend:function(){
       //$(‘#cast_order‘).html(imgshow);
    //},
    success:function(data){
        alert(data)
    },
    error: function(xmlHttpRequest,error) {
        
    }
});
</script>

//注意:dataType:的存在,beforeSend是不会执行的。跨域必须get,不能post。跨域请求只能是异步请求设置async: false无效。

 

public function upcast($dotype=‘‘){
    $callback = $_GET[‘callback‘];
        // $results = array(1,2,3);
        // echo $callback . ‘(‘ . json_encode($results) . ‘)‘;
    echo $callback.‘(1)‘; //返回文本1
}

 

https://www.zhihu.com/question/19618769

http://bbs.csdn.net/topics/390732999

http://bbs.csdn.net/topics/350109002



以上是关于ajax 跨域请求的主要内容,如果未能解决你的问题,请参考以下文章

前端Jquery-Ajax跨域请求,并携带cookie

简单ajax跨域请求

ajax跨域请求

JQuery - Ajax和Tomcat跨域请求问题解决方法!

跨域 jquery ajax 请求

PHP中运用jQuery的Ajax跨域调用实现代码