要从名称数组制作HTML按钮并将它们插入到DOM中,你可以按照以下步骤进行:
<button>
标签创建按钮。以下是一个简单的示例,展示如何从名称数组制作HTML按钮并将它们插入到DOM中:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dynamic Buttons</title>
</head>
<body>
<div id="button-container"></div>
<script>
// 名称数组
const names = ["Button 1", "Button 2", "Button 3"];
// 获取容器元素
const container = document.getElementById('button-container');
// 遍历名称数组,生成按钮并插入到容器中
names.forEach(name => {
const button = document.createElement('button');
button.textContent = name;
button.onclick = () => {
alert(`Clicked ${name}`);
};
container.appendChild(button);
});
</script>
</body>
</html>
通过以上步骤,你可以轻松地从名称数组制作HTML按钮并将它们插入到DOM中。
领取专属 10元无门槛券
手把手带您无忧上云