-1

我没有使用 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")}
    })
    }
4

1 回答 1

0

XMLHttpRequest 无法加载http://isuite.c-entron.de/CentronService/REST/Login。Access-Control-Allow-Origin 不允许来源http://fiddle.jshell.net 。

跨域策略限制连接到不同的域名

于 2013-10-01T11:09:55.313 回答