$.ajax({ url: '<%= Url.Content("~/OtherManager/SetTeacherUserName2/") %>', data: { TeacherId: $(this).parent().attr("id"), TeacherUserName: $(this).attr("value") }, dataType: "text", type: 'POST', success: function (data) { $('#ErrorMsg').text(data).css("color", "Red").fadeIn(3000, function () { $('#ErrorMsg').fadeOut(3000, function () { }); }); } });
其中:
url: 要post的URL路徑
data: 要傳過去URL的參數
dataType: 回傳的資料型態,常用為 text 與 json
type: 指定要POST還是GET
success: 成功之後要執行的function
Refrence: http://api.jquery.com/jQuery.ajax/ http://api.jquery.com/jQuery.post/
沒有留言:
張貼留言