I am writing jquery ajax code to call wcf service.
In this case WCf returns html as string.
**Some how when data is back in jquery it is in {d:"data"} format, What is this d element?**
*below is code*
```
$.get('<%= ResolveClientUrl("~/AjaxServices/ListingBrowse.svc/GetNewsHTML") %> ',
null,
function(data) {
alert(data);
$('#newsdiv').html(data.d);
},
"html");
```
以上就是Json data has {d:"data"}的详细内容,更多请关注web前端其它相关文章!