1
客戶端:我如何獲得使用JQuery從服務(WCF)返回的值?
$("#btn").click(function (event) {
$.getJSON('http://host/myservice.svc/GetCount?method=?', { Id: '2' }, function (customer) {
//how to get an value ??? here ????
});
//return false;
});
服務器
public long GetCount(string method, string Id)
{
return 100;
}
您是如何定義JSONP端點? – 2010-11-22 21:33:44