我有这个 jquery 代码:
var sendInfo = {
auth: {
username: "janusz",
password: "password"
},
func: "getCategories"
};
$.ajax({
url: 'http://domainname/fcgi-bin/wgpa.fcgi',
type: "POST",
data: sendInfo,
dataType: "json",
contentType: "text/json; charset=utf-8",
success: function (data) {
//....
}
});
它适用于 Chrome、Firefox、IE11,但在 IE8 中失败。什么都不说。并且请求也不会出现在服务器端。