jQuery Ajax 简单的实现跨域请求

    选择打赏方式

html 代码清单:

  1. <script type="text/javascript" src="http://你的域名/js/jquery-1.4.2.min.js"></script>
  2. <script type="text/javascript">
  3. $(function(){
  4. $.ajax(
  5. {
  6. type:'get',
  7. url : 'http://你的域名/test.php?loginuser=lee&loginpass=123456',
  8. dataType : 'jsonp',
  9. jsonp:"jsoncallback",
  10. success : function(data) {
  11. alert("用户名:"+ data.user +" 密码:"+ data.pass);
  12. },
  13. error : function() {
  14. alert('fail');
  15. }
  16. }
  17. );
  18. })
  19. </script>

服务端 test.php 代码清单:

  1. <?php
  2. header('Content-Type:text/html;Charset=utf-8');
  3. $arr = array(
  4. "user" => $_GET['loginuser'],
  5. "pass" => $_GET['loginpass'],
  6. "name" => 'response'
  7. );
  8. echo $_GET['jsoncallback'] . "(".json_encode($arr).")";

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

热门推荐

发表吐槽

你肿么看?

你还可以输入 250 / 250 个字

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

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

私密评论

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

已有2条吐槽

匿名

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

匿名

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