我有一个要求,我必须使用 jquery 将表单发布方法中的 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);
}});