jquery 复选框属性
在下面的代码中,如何获取仅选中的复选框并使用 jquery 将其从列表中删除,并在 div 中填充删除的 html
<div id="section_val">
<input type="checkbox" name="a_d" value="1">a_d</input>
<input type="checkbox" name="a_d" value="2">a_d1</input>
<input type="checkbox" name="a_d" value="3">a_d2</input>
<input type="checkbox" name="a_d" value="4">a_d3</input>
</div>
<div id="populate"></div>
<input type="button" value="Select" onclick="get_Selected();"/>
<input type="button" value="Retain" onclick="=retain;"/>
<script>
function get_Selected()
{
}
function retain()
{
}
</script>
In the below code how to get the checkboxes that are selected only and remove it from the list using jquery and populate the removed html in the div
<div id="section_val">
<input type="checkbox" name="a_d" value="1">a_d</input>
<input type="checkbox" name="a_d" value="2">a_d1</input>
<input type="checkbox" name="a_d" value="3">a_d2</input>
<input type="checkbox" name="a_d" value="4">a_d3</input>
</div>
<div id="populate"></div>
<input type="button" value="Select" onclick="get_Selected();"/>
<input type="button" value="Retain" onclick="=retain;"/>
<script>
function get_Selected()
{
}
function retain()
{
}
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
演示
demo