Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
伙计们,我认为我的问题既简单又愚蠢……但请保持温和。
有什么方法可以使用 javascript 从获取请求中返回信息?我想将 utmr 的信息从谷歌分析保存到一个变量中。
http://imgur.com/GxBQkgB
(对不起,英语不好;))
JavaScript 中的 HTTP GET 请求?
function httpGet(theUrl) { var xmlHttp = null; xmlHttp = new XMLHttpRequest(); xmlHttp.open( "GET", theUrl, false ); xmlHttp.send( null ); return xmlHttp.responseText; }