有没有办法将javascript变量设置为另一个HTML页面的内容?
我试过了:
var X = $(http://www.website.com/home).html()
但是它什么也没返回。…即使它说明了这个主意…所以…有人可以告诉我该怎么做吗?还有某个网站id或class该网站中的内容,例如:
id
class
var X=$(http://www.website.com/home "#id").html()
真的会对我有帮助,在此先感谢!
听起来您在寻找这个:
$.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/
$.get()
$.ajax()