日期:2014-05-16 浏览次数:20457 次
$.ajax({
url: 'http://www.sina.com.cn',
dataType: 'text',
async: false,
success: function (text) {
alert(text);
},
error: function (text) { error('error'); }
});