这是我的代码
$.ajax({
url: "http://localhost:42046/WebService1.asmx/HelloWorld",
type: 'get',
success: function (data) {
$("#fillme").html(data);
}
});
当我删除$("#fillme").html(data);
错误时。
HTML
<span id="fillme"></span>
答案 0 :(得分:3)
似乎问题在于从Web服务解析xml。
如果只是在浏览器中执行http://localhost:42046/WebService1.asmx/HelloWorld
,你会看到它。我建议您检查您的网络服务并使其以正确的格式返回数据(我不确定您到底需要什么,但它看起来像字符串)。还尝试更改$.ajax
参数(api.jquery.com/jQuery.ajax),注意contents
,converters
。