HTML是一种标记语言,用于构建网页内容。其中一个常见的功能是在页面上添加按钮,以供用户点击。当用户点击按钮时,可以通过JavaScript代码来实现显示或隐藏特定内容。今天我们将要讨论如何在HTML页面中添加按钮,并通过点击按钮来显示内容。
首先,我们需要创建一个基本的HTML文件。我们可以在文本编辑器中新建一个文件,并保存为`index.html`。然后在文件中添加以下代码:
```html
Click Button to Show Content
Welcome to Our Website
This is the hidden content that will be shown when you click the button.
document.getElementById('show-content').addEventListener('click'
function() {
document.getElementById('hidden-content').style.display = 'block';
});
```
在上面的HTML代码中,我们创建了一个页面标题`
`,一个按钮`