function show(page) {
var html = "";
switch (page) {
case "home":
html = 'All the stuff of the page ';
break;
case "about":
html = 'All the stuff of the pahe';
break;
case "contact":
html = "This is the contact page<br />...";
break;
}
document.getElementById('container').innerHTML = html;
}
“关于”链接指向“关于”,“联系人”链接指向联系人。如何仅使用一个链接/按钮/图像使其工作,以便单个按钮循环浏览所有内容。让我们在这里使用“左按钮”而不是“主页”链接。它应该无限地保持循环链接。