如何在不使用 .get() 或 .load() 的情况下将 ajax 数据加载到 DIV?

How to load ajax data into DIV without using .get() or .load()?

一家合作公司给了我一个 URL 来将内容加载到 DIV。我们将以下内容放到页面上:

<div id="catalog"></div>

然后用.get()把内容放进去。由于我们在一些较旧的站点上使用 jQuery 1.3.2,并且工程部门不会很快更新它,因此出现了一个问题。 .get().load() 都给我错误。

我试过诸如:

 $(document).ready(function () {
         $.ajax("http://appserv.ourpartneringcompany.com/catalog/?acct=12345",function(data){
            $('#catalog').html(data);
         });
});

错误消失,但数据未加载。我可以使用 jQuery.ajax() 吗?

我认为 jQuery 1.3.2 不支持该语法。

尝试修改为:

$.ajax({
  url: "http://....",
  type: "GET",
  success: function(data){
    $('#catalog').html(data);
  }
});