小编典典

使用ajax在变量中获取另一页的内容

ajax

有没有办法将javascript变量设置为另一个HTML页面的内容?

我试过了:

var X = $(http://www.website.com/home).html()

但是它什么也没返回。…即使它说明了这个主意…所以…有人可以告诉我该怎么做吗?还有某个网站idclass该网站中的内容,例如:

var X=$(http://www.website.com/home "#id").html()

真的会对我有帮助,在此先感谢!


阅读 234

收藏
2020-07-26

共1个答案

小编典典

听起来您在寻找这个:

$.get('otherPage.html').then(function(responseData) {
  //responseData is the contents of the other page. Do whatever you want with it.
  $('#someElem').append(responseData);
});

现场演示(单击)。

$.get()是jQuery的简写方法$.ajax()http://api.jquery.com/jquery.ajax/

2020-07-26