我没有从服务器使用jquery获取服务器响应。但是当我从服务器端服务器端检查时得到响应。我在参数中发送相同的值,但没有得到响应?
你可以帮帮我吗? 这个图像是服务员检查的时候。它正在响应。但是
http://jsfiddle.net/ravi1989/LsKbJ/4/
$(document).ready(function () {
//event handler for submit button
$("#btnSubmit").click(function () {
//collect userName and password entered by users
var userName = $("#username").val();
var password = $("#password").val();
//call the authenticate function
authenticate(userName, password);
});
});
//authenticate function to make ajax call
function authenticate(userName, password) {
$.ajax
({
type: "POST",
//the url where you want to sent the userName and password to
url: "http://dd.c-dd.de/cc/REST/Login",
type: "POST",
dataType: 'json',
async: false,
crossDomain: true,
//json object to sent to the authentication url
data: {Application:"61136208-742B-44E4-B00D-C32ED26775A3",
Device:"null",
LoginKind:"0", Password: "1",Username:"qus"},
success: function (t) {
alert(t+"df")
},
error:function(data){alert(data+"dfdfd")}
})
}
答案 0 :(得分:0)
XMLHttpRequest无法加载http://isuite.c-entron.de/CentronService/REST/Login。 Access-Control-Allow-Origin不允许原点http://fiddle.jshell.net。
Cross Origin Policy限制连接到不同的域名