$.ajax({
type: "POST",
url: "abc.ashx",
data: {"str": strText },
dataType: "json",
async: false,
success: function(responseText) {
responseText; //这就是返回的responseText
},
error: function (e) {
return;
}
});