📜  使用 js 获取请求 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:27.400000             🧑  作者: Mango

代码示例1
function httpGet(theUrl) {
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
    xmlHttp.send( null );
    return xmlHttp.responseText;
}