未捕获的TypeError:无法读取属性' ownerDocument'在jquery上的null

时间:2014-04-10 09:30:44

标签: jquery

这是我的代码

$.ajax({
       url: "http://localhost:42046/WebService1.asmx/HelloWorld",
       type: 'get',
       success: function (data) {
       $("#fillme").html(data);
      }
});

当我删除$("#fillme").html(data);错误时。

HTML

<span id="fillme"></span>

1 个答案:

答案 0 :(得分:3)

似乎问题在于从Web服务解析xml。 如果只是在浏览器中执行http://localhost:42046/WebService1.asmx/HelloWorld,你会看到它。我建议您检查您的网络服务并使其以正确的格式返回数据(我不确定您到底需要什么,但它看起来像字符串)。还尝试更改$.ajax参数(api.jquery.com/jQuery.ajax),注意contentsconverters