有没有办法使用Javascript函数重置HTML页面?

时间:2017-02-05 07:47:34

标签: javascript html

我目前有一个Javascript重置功能,如下所示:

function reset(){
        document.body.innerHTML = login;
}

,登录变量如下所示:

var login = '<div id="error-container" ></div><div style="text-align:center"><ul style="list-style-type: none;" ><li><input id="name" type="text" name="name" value="" placeholder="Enter your Name!" ></li><li><input id="age" type="text" name="age" value="" placeholder="Enter your Age!" ></li><li><input id="gender" type="text" name="gender" value="" placeholder="Enter your Gender!" ></li></ul><button type="button" name="button" onclick="setUser()">Start chating!</button></div>

变量基本上是一个HTML页面,所以我想知道是否有一种方法可以使用这个Javascript函数重新加载HTML页面,而不是仅仅为变量编写所有HTML代码并显示它。

1 个答案:

答案 0 :(得分:1)

要使用javascript重新加载页面,请使用:

window.location.reload();

https://developer.mozilla.org/en-US/docs/Web/API/Location/reload