我正在使用不同的 div 元素构建一个在一个 html 文件中有多个页面的网站。该代码类似于下面的代码。我需要为该 html 文件中的每个不同页面提供不同的元描述和标题。这可以做到吗?
这是代码:
<html>
<head>
<script>
function show(shown, hidden) {
document.getElementById(shown).style.display='block';
document.getElementById(hidden).style.display='none';
return false;
}
</script>
</head>
<body>
<div id="Page1">
Content of page 1
<a href="#" onclick="return show('Page2','Page1');">Show page 2</a>
</div>
<div id="Page2" style="display:none">
Content of page 2
<a href="#" onclick="return show('Page1','Page2');">Show page 1</a>
</div>
</body>
</html>
我尝试在每个 div 元素中添加不同的元素,但 Facebook 只是从文档中选择其中一个并将其用于所有页面。