是否可以刷新包含来自outerHTML的新内容的新内容?我有问题,我想刷新页面直到2秒,处理0-2秒来获取带有innerHTML等的新HTML但是在我从outerHTML获得新内容之后。我很难用outerHTML中的HTML刷新这个内容。
在我的示例代码下面:
<script>
// code blablabla to get new content. This has been fix code, and below code to start refresh page with outerHTML.
window.onload = function() {
tes();
};
function tes() {
var htmlAll = document.documentElement.outerHTML;
setTimeout(function(){howCodeRefresh()}, 2000);
function howCodeRefresh() {
// how code to refresh page and replace all content with variable htmlAll
};
};
</script>
我的问题:有可能吗?如果是的话,该怎么做?
感谢。
答案 0 :(得分:0)
你不是很清楚地解释你的问题,你可以在jquery中尝试ajax来解决你的问题。这是一个基本的演示:
<div id = "target"></div>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
window.onload = loadHtml;
function loadHtml(){
$.get("your/server/page.html",function(response){
$("#target").html(response); //Here is your html response
},'html');
}
</script>