在前端开发中,单选按钮(Radio Button)是一种常见的表单控件,用于在一组选项中选择一个。当用户选中某个单选按钮时,通常希望隐藏原始的单选按钮,并在一个新的<div>
元素中显示选中的值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hide Radio Button and Show Selected Value</title>
<style>
.hidden {
display: none;
}
#selectedValue {
margin-top: 10px;
font-weight: bold;
}
</style>
</head>
<body>
<form id="myForm">
<label>
<input type="radio" name="option" value="Option 1" onclick="showSelectedValue()"> Option 1
</label>
<label>
<input type="radio" name="option" value="Option 2" onclick="showSelectedValue()"> Option 2
</label>
<label>
<input type="radio" name="option" value="Option 3" onclick="showSelectedValue()"> Option 3
</label>
</form>
<div id="selectedValue"></div>
<script>
function showSelectedValue() {
const form = document.getElementById('myForm');
const selectedValueDiv = document.getElementById('selectedValue');
const radios = form.querySelectorAll('input[type="radio"]');
let selectedValue = '';
radios.forEach(radio => {
if (radio.checked) {
selectedValue = radio.value;
radio.classList.add('hidden');
} else {
radio.classList.remove('hidden');
}
});
selectedValueDiv.textContent = `Selected Value: ${selectedValue}`;
}
</script>
</body>
</html>
showSelectedValue
正确绑定到单选按钮的onclick
事件。.hidden
是否正确应用到单选按钮上。<div id="selectedValue">
元素存在且正确获取到。selectedValueDiv.textContent
。通过以上步骤和示例代码,您可以实现选定后隐藏单选按钮并在新<div>
中显示选定的值。
领取专属 10元无门槛券
手把手带您无忧上云