作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下代码获取所有选定复选框的值,以将它们插入到文本区域中。
$('input[name="user"]:checked').each(function(){
parent.setSelectedGroup($(this).val()+ "\n");
});
但我总是只得到一个值。
如何以正确的方式编写代码来获取所有选定复选框的值?
谢谢!
编辑
1) “父”,因为复选框位于 fancybox.iframe 中。
2)父窗口中setSelectedGroup是
function setSelectedGroup(groupText){
$('#users').val(groupText);
最佳答案
您获取了所有值,只需在集合的每次循环中将新值传递给setSelectedGroup
即可。我假设该方法替换内容而不是附加内容,因此您根本看不到它发生,因为它太快了。
parent.setSelectedGroup(
//select elements as a jquery matching set
$('[name="user"]:checked')
//get the value of each one and return as an array wrapped in jquery
//the signature of `.map` is callback( (index in the matching set), item)
.map(function(idx, el){ return $(el).val() })
//We're done with jquery, we just want a simple array so remove the jquery wrapper
.toArray()
//so that we can join all the elements in the array around a new line
.join('\n')
);
应该这样做。
其他一些注意事项:
关于javascript - 循环遍历选定的复选框 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23746443/
我是一名优秀的程序员,十分优秀!