日期:2014-05-16 浏览次数:20326 次
$.ajax({
url: href,
dataType: "json",
context: document.body,
cache: false,
type: "post",
data: "textBoxId=" + textBoxId,
success: function (result) {
alert("success");
},
error: function (error) {
document.write(error.responseText);
}
});