Skip to content

Instantly share code, notes, and snippets.

@foru17
Created June 10, 2014 07:21
Show Gist options
  • Save foru17/077034f8a7fefa7aa046 to your computer and use it in GitHub Desktop.
Save foru17/077034f8a7fefa7aa046 to your computer and use it in GitHub Desktop.
JavaScript 发送 GET请求
function httpGet(theUrl)
{
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send( null );
return xmlHttp.responseText;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment