ASP.NET
0
Вклад в тег
function getHtml() {
$.ajax({
url: 'http://www.test.com',
type: 'GET',
success: function(res) {
var content = $(res.responseText).text();
alert(content);
}
});
}