我想用PHP和jQuery使用c#web服務。下面的代碼是 將數據與$ .ajax一起發佈到php代碼中。但在i = url內部,我無法從Web服務獲取任何數據。如何才能幫我開發此代碼在php中使用c#web服務(asmx)
$.ajax({
type: "POST",
url: "http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit",
dataType: 'jsonp',
success: function(data) {alert('ok')},
error : function(e) {alert('error')}
});