如何使用Jqury从其他网站调用webmethod

如何使用Jqury从其他网站调用webmethod

本文介绍了如何使用Jqury从其他网站调用webmethod的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

$.ajax({
        type: 'POST',
        contentType: 'application/json; charset=utf-8',
        url: '/demo1.asmx/HelloWorld',
        data: "{}",
        dataType: 'json',
        success: function (r) {
            alert('done');
        },
        error: function (r) {
            alert(r.val());
        }
    });





我想调用HelloWorld方法,它不工作。

或如何在Jquery和C#中调用'HelloWorld'方法。 />
请anybode帮助我。



I wan to call HelloWorld method, it is not working.
or how to call 'HelloWorld' method in Jquery and C#.
Please anybode help me.

推荐答案





我想调用HelloWorld方法,它不起作用。

或如何在Jquery和C#中调用'HelloWorld'方法。

请anybode帮助我。



I wan to call HelloWorld method, it is not working.
or how to call 'HelloWorld' method in Jquery and C#.
Please anybode help me.


alert(r.val());



尝试:


Try:

alert(r.statusText);



看看它给出的状态。如果它给出无运输状态,那么这是一个跨域发布问题,可以解决如下:



[]


这篇关于如何使用Jqury从其他网站调用webmethod的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 18:38