我想通过 jQuery 在 php 中使用 c# web 服务 (*.asmx)。
我的网络服务是:
http
://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit
,我的 php 代码是:
$.ajax({
type: "POST",
url: "http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit",
dataType: 'text/xml; charset=utf-8',
success: function(data) {alert('ok')},
error : function(e) {alert('error')}
});
但它不起作用。
我需要帮助