您好我有一个使用Windows服务托管的wcf服务并且服务托管已成功完成,现在我的要求是在javascript和服务返回表中使用它,它是xml格式,列名作为标签,所以如何阅读日期
答案 0 :(得分:0)
我得到了答案这是用javascript编写的代码
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
window.onload = invokeService();
function invokeService() {
$(document).ready(function () {
// Additional way of calling WCF service using getJSON() JQuery method
$.getJSON("http://localhost/WcfJsonRestService/Albums/rjinfo", {},
function (data) {
alert("hello " + data);
});
});
}
</script>