有没有办法将javascript变量设置为另一个HTML页面的内容?
我试过了:
var X = $(http://www.website.com/home).html()
但它没有返回任何东西....即使它解释了这个想法......所以...有谁能告诉我该怎么做呢?此网站中某个id
或class
的内容,例如:
var X=$(http://www.website.com/home "#id").html()
这对我很有帮助,谢谢你!
答案 0 :(得分:7)
听起来你正在寻找这个:
$.get('otherPage.html').then(function(responseData) {
//responseData is the contents of the other page. Do whatever you want with it.
$('#someElem').append(responseData);
});
<强> Live demo (click). 强>
$.get()
是jQuery $.ajax()
的简写方法。 http://api.jquery.com/jquery.ajax/