作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何获取每个 value
的值选中的复选框显示为列表项?
我在下面有一个片段将值放入 textArea 输入,但这现在不能满足我的需要,我正在寻找一种方法将输出值添加到 <ul>
.
function checkbox() {
var checkboxes = document.getElementsByName('checkboxLocations');
var checkboxesChecked = [];
// loop over them all
for (var i = 0; i < checkboxes.length; i++) {
// And stick the checked ones onto an array...
if (checkboxes[i].checked) {
checkboxesChecked.push(checkboxes[i].value);
}
}
document.getElementById("show").value = checkboxesChecked;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label>CB 1</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Muriwai Beach" onClick="checkbox();" />
<label>CB 2</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Bethells Sand Dunes" onClick="checkbox();" />
<label>CB 3</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Whatipu Beach" onClick="checkbox();" />
<input type="text" id="show" name="locations">
最佳答案
只需获取一个 ul 并继续追加 li。
function checkbox() {
var checkboxes = document.getElementsByName('checkboxLocations');
var checkboxesChecked = [];
// loop over them all
var liText ="";
for (var i = 0; i < checkboxes.length; i++) {
// And stick the checked ones onto an array...
if (checkboxes[i].checked) {
liText += "<li>"+checkboxes[i].value+"</li>";
}
}
document.getElementById("show").innerHTML = liText;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label>CB 1</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Muriwai Beach" onClick="checkbox();" />
<label>CB 2</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Bethells Sand Dunes" onClick="checkbox();" />
<label>CB 3</label>
<input id="walk" class="radio-button" type="checkbox" name="checkboxLocations" value="Whatipu Beach" onClick="checkbox();" />
<ul id="show" name="locations" />
关于javascript - 使用 Jquery 列出项目的复选框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48634419/
我是一名优秀的程序员,十分优秀!