http://api.jquery.com/jQuery.ajax/
但一串英文總是很容易略過咩
contentType
Default: 'application/x-www-form-urlencoded'
由於要傳中文所以contentType 指定字集 UTF-8 囉
由於要傳中文所以contentType 指定字集 UTF-8 囉
$.ajax({
url: "test.html",
context: document.body,
contentType: 'application/x-www-form-urlencoded;charset=UTF-8',
success: function(){
dosomthing();
}
});