我正在创建一个在线互动故事,用户可以在其中播放一组特定的场景。目前我有4个不同的html页面,我希望能够在用户按下按钮时循环显示。我只希望能够在页面中循环一次,故事将在另一个方向上引导;因此,我需要页面以设定顺序循环而不是随机化。
我的JavaScript知识很少,不知道从哪里开始,所以任何帮助都会很棒!
答案 0 :(得分:1)
首先创建网页网址的数组列表,然后为按钮点击事件定义一个函数。假设你的按钮id是“myRandomPageButton”
var pages = ["1.html", "2.html", "3.html", "4.html"];
document.getElementById("myRandomPageButton").addEventListener("click", function() {
window.location.href = pages[Math.floor(Math.random() * 4)];
});