jQuery Ajax 简单的实现跨域请求

    选择打赏方式

html 代码清单:

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

服务端 test.php 代码清单:

<?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).")";  

版权声明:若无特殊注明,本文为《明月浩空》原创,转载请保留文章出处。
本文链接:https://blog.myhkw.cn/post-140.html
正文到此结束

热门推荐

发表吐槽

你肿么看?

你还可以输入 250 / 250 个字

嘻嘻 大笑 可怜 吃惊 害羞 调皮 鄙视 示爱 大哭 开心 偷笑 嘘 奸笑 委屈 抱抱 愤怒 思考 日了狗 胜利 不高兴 阴险 乖 酷 滑稽

评论信息框
可使用QQ号实时获取昵称+头像

私密评论

吃奶的力气提交吐槽中...

已有2条吐槽

匿名

2019-07-29 11:22 四川省成都市电信
签到成功!签到时间:上午11:22:30,每日打卡,生活更精彩哦~
 Windows 7 x64   Google Chrome 75.0.3770.142
匿名

匿名

2017-04-04 15:43 江西省九江市电信
签到成功!签到时间:下午3:45:17,每日打卡,生活更精彩哦~
 Windows 10 x64   QQBrowser 9.5.10548.400
匿名