我正在使用 html、css 和 js 在我的本地主机中开发一个移动应用程序。我想带以下页面的表 http://www.sleague.com/competitions/s-league/table
我想按原样带来该页面的表格(点表)。我使用了在 sof 中找到但没有 html 数据的代码。代码如下
function stripScripts(s) {
var div = document.createElement('div');
div.innerHTML = s;
var scripts = div.getElementsByTagName('script');
var i = scripts.length;
while (i--) {
scripts[i].parentNode.removeChild(scripts[i]);
}
return div.innerHTML;
}
function loadTest () {
alert("Inserted");
$.get('http://www.sleague.com/competitions/s-league/table', function (data) {
alert(stripScripts(data));
});
alert("Done");
}
代码正在运行,但是当我在本地主机时,我需要从页面获取的 html 没有出现。该怎么办?提前致谢