ajax跨域问题

Posted swjieyi

tags:

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

<script type="text/javascript" src="http://www.youxiaju.com/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(function()
$.ajax(
   
        type:'get',
        url : 'http://www.youxiaju.com/validate.php?loginuser=lee&loginpass=123456',
        dataType : 'jsonp',
        jsonp:"jsoncallback",
        success  : function(data)
            alert("用户名:"+ data.user +" 密码:"+ data.pass);
        ,
        error : function()
            alert('fail');
       
   
);
)

</script>

<?php
header('Content-Type:text/html;Charset=utf-8');
$arr = array(
"user" => $_GET['loginuser'],
"pass" => $_GET['loginpass'],
"name" => 'response'


);
echo $_GET['jsoncallback'] . "(".json_encode($arr).")";

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

20K前端大神面试如何回答ajax跨域问题!

mui.ajax 跨域怎么解决的

如何解决ajax跨域问题

mui ajax登录怎么跨域

什么叫ajax跨域访问

ajax跨域 (转)