我有javascript:-当我们单击“主页”链接时,它会显示主页内容,然后当我们单击“关于”链接时,它会显示有关相关内容。如何使这个只有一个按钮,并且那个 1 按钮应该能够在点击时更改链接。这是代码。
<script type = "text/javascript" > 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;
</script>