我一直在研究一个普通的HTML项目,没有网络服务器,需要我导航到项目的不同部分,例如不同页面上的测验。我想点击一个按钮,然后被带到那个部分,我已经找到了方法来做到这一点,但没有发现我所拥有的东西。我真的需要帮助,因为我几乎被卡住了。
<button id='quiz' onclick="QuizFunction()" type="button" style="hight: 25px; width: 100px">Avalanche Quiz!</button><br>
我尝试了各种不同的javascript来自
function QuizFunction(){ document.write("entire 500 line quiz code here")
要
document.GetElementById"quiz"InnerHTML/same big quiz code here/
我真的需要帮助!
答案 0 :(得分:1)
如果您只是想更改页面(您的问题很模糊)
为什么不能使用链接?
<a href="avalanche_quiz.html">
<button type="button">Avalanche Quiz!</button>
</a>
这会在链接中包含本机按钮。
使用JavaScript处理这么简单的事情似乎没必要。
答案 1 :(得分:0)
您正在寻找window.location
:
function QuizFunction(){ window.location.replace("filename.html"); }