在线测试跨域问题 电脑版发表于:2022/5/17 17:44 # 在线测试跨域问题 打开谷歌 ,f12调出开发者工具, 然后在控制台打印下面的js代码。 ```js var xhr = new XMLHttpRequest(); xhr.open('GET', 'https://ip/XXX/action'); xhr.send(null); xhr.onload = function(e) { var xhr = e.target; console.log(xhr.responseText); } ```