我有一个要求,我必须使用jquery将表单post方法中的xml数据发布到跨域页面,其中没有Web服务写入其正常的aspx页面。我使用以下代码也谷歌几个小时但没有运气请帮助我克服这种情况。
$.ajax({
type: "POST",
url: "http://test-dev.test.net/default.aspx",
data: "{'a_sScoringType':'" + $("input[id$='hdnEvalSystem']").val() + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (json) {
alert(json);
}});