Using jQuery's get
method, it's pretty simple:
$.get('a.html', null, function(text){
alert($(text).find('#name'));
});
Raw XHR Request (by popular demand):
var request = new XMLHttpRequest();
request.addEventListener("load", function(evt){
console.log(evt);
}, false);
request.open('GET', 'a.html', true),
request.send();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…