JQuery Mobile - 我们可以点击按钮调用POST Web服务吗?

时间:2016-04-14 09:18:20

标签: jquery ajax post

单击按钮,我通过JQUERY AJAX调用Web服务POST方法。 Web服务位于另一个域中。但是这个电话会失败并且没有给出任何回应。

当我通过浏览器验证网络请求时,我可以看到URL为

https://localsite://https://remotesite/webservicemethod

如果我在页面加载中调用相同的POST Web服务方法,则表示调用成功。网址正确为" http://remotesite/webservicemethod"。

这是我正在使用的方法:

_asyncPOST : function(url, dataObject, callback) {
        $.ajax({
            type            : "POST",
            dataType    : "json",
            url             : url,
            data            : dataObject,
            success     : function(data) {
                callback(data);
            }
        });
    },

但我想点击一个按钮调用这个webservice方法。

0 个答案:

没有答案