1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > ajax传值的url JQuery ajax url传值与data传值的区别

ajax传值的url JQuery ajax url传值与data传值的区别

时间:2023-01-01 03:33:29

相关推荐

ajax传值的url JQuery ajax url传值与data传值的区别

url传中文,乱码,即便charset为 UTF-8, $.ajax({

type: "POST",

cache: false,

url: "/ProductTypeAndCat/AddType?typeName=" + typeName,

contentType: "application/x-www-form-urlencoded; charset=UTF-8",

datatype: "JSON",

});

data传中文,正确。 $.ajax({

type: "POST",

cache: false,

url: "/ProductTypeAndCat/AddType",

data: {typeName:typeName},

contentType: "application/x-www-form-urlencoded; charset=UTF-8",

datatype: "JSON",

success: function (data) {

if (data.F == 0) {

alert("添加陈功");

location.href = "/Admin/ProductType";

}

else {

alert(data.M);

}

},

error: function (xhr, status, error) {

alert(error);

}

});

原文:/luminji/p/4685127.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。