Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 ajax .get 及其 ID 属性检索 div。ajax 调用有效,但它返回整个页面,而不仅仅是 id 顶部的 div。
$.get(page + ' #top', function(data){ topContent= data; });
页面只是页面的 url,例如:gridpView.php。上面的代码与 .load 函数完美配合。我试图在使用它们之前加载几个 div,所以加载不是一个选项。
我究竟做错了什么?.get 函数是否能够检索 div?
那种东西适用,load但我不相信它适用于get. 您需要获取整个页面,然后获取您想要的部分:
load
get
$.get(page, function(data){ topContent=$(data).find("#top"); });
这将为您提供他 div 的内容
topContent= $('#top').html();