赞
踩
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>corstest</title>
- </head>
- <body>
- <script>
- function corstest() {
- var xhr = new XMLHttpRequest(); //新建xhr对象
- xhr.onreadystatechange = function () { //当readyState改变时会触发onreadystatechange事件
- if(xhr.readyState == 4){ //readyState为4时表示数据接收完成
- alert(xhr.responseText);
- }
- }
- xhr.open("GET",'http://x.x.x.x/user',true); //初始化请求,使用get方法请求,且为异步请求
- xhr.send();
- }
- corstest();
- </script>
- </body>
- </html>
CORS防御方案:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。