我正在尝试获取内部域页面的来源,可以将其基本上克隆到 js 文件中。
我不确定这是否可能,但我已尝试开始代码的外观。
我意识到 var 源可能是我出错的地方,因为它无法正常工作。
希望有人可以尝试调试我的代码。
谢谢!
$(document).ready(function() {
// make request to site
var request = "http://mysite.com/page.html";
// get the dom from the html layer
var source = $(request+'html').html();
// output to the dom the source of the request
$('html').append(source);
});
这样的事情会更有意义吗?
$(document).ready(function() {
var create = $('html').load('http://mysite.com/page.html');
document.write(create);
});