当前位置:首页 > 编程笔记 > 正文
已解决

javascript跨域传输数据的设置和兼容浏览函数代码

来自网友在路上 11018101提问 提问时间:2023-10-16 07:27:16阅读次数: 101

最佳答案 问答题库1018位专家为你答疑解惑

//假设这个页面为http://www.xuejq.mm/get.php

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="UTF-8"></html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><title>拖动元素到另外一个元素当中</title></head><body><script type="text/javascript">//跨域获取的函数function createCORSRequest(method,url){//标准浏览器var xhr=new XMLHttpRequest();if("withCredentials" in xhr){xhr.open(method,url,true)}else if(typeof XDomainRequest !="undefined"){//兼容IE浏览器xhr=new XDomainRequest();xhr.open(method,url);}else{xhr=null}return xhr;}//这里是需要跨域的目标页http://www.cssxue.mm/cors.phpvar request=createCORSRequest("get","http://www.cssxue.mm/cors.php");if(request){request.onload=function(){console.log(request.responseText);};request.send();}</script></body>
</html>

//目标页http://www.cssxue.mm/cors.php

<?php
//必须设置这个header()头,被允许跨域获取的URL
header("Access-Control-Allow-Origin: http://www.xuejq.mm");
echo "fdfadsfa";
?>
查看全文

99%的人还看了

猜你感兴趣

版权申明

本文"javascript跨域传输数据的设置和兼容浏览函数代码":http://eshow365.cn/6-19680-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!