Skip to content

Instantly share code, notes, and snippets.

@manxisuo
Created April 26, 2013 18:36
Show Gist options
  • Save manxisuo/5469420 to your computer and use it in GitHub Desktop.
Save manxisuo/5469420 to your computer and use it in GitHub Desktop.
一个JSONP的例子
function addScriptTag(src) {
var script = document.createElement('script');
script.setAttribute("type","text/javascript");
script.src = src;
document.body.appendChild(script);
}
function result(data) {
alert(data.responseData.results[0].unescapedUrl);
}
addScriptTag("http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=manxisuo&callback=result");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment