jQuery 实现多选框功能
<inputname='kemu'type='checkbox'/>数学<spanclass='yuan'>1000</span>元<inputname='kemu'ty...
<input name = 'kemu' type = 'checkbox' /> 数学 <span class = 'yuan'>1000</span>元
<input name = 'kemu' type = 'checkbox' /> 语文 <span class = 'yuan'>2000</span>元
<input name = 'kemu' type = 'checkbox' /> 音乐 <span class = 'yuan'>3000</span>元
每次
点选一个选框,获取后面的 钱 ?就是想把 <span>里的值组成字符串 ? 展开
<input name = 'kemu' type = 'checkbox' /> 语文 <span class = 'yuan'>2000</span>元
<input name = 'kemu' type = 'checkbox' /> 音乐 <span class = 'yuan'>3000</span>元
每次
点选一个选框,获取后面的 钱 ?就是想把 <span>里的值组成字符串 ? 展开
展开全部
jquery实现(多选框)全选和取消全选功能:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv="content-type" content="text/html" charset="utf8">
<title></title>
/*要添加好jquery库*/
<script type="text/javascript" src=\'#\'" /script>
<script src=\'#\'" type="text/javascript"></script>
<script type="text/javascript">
function checkAll() {
$("input:checkbox").attr("checked","true");
}
function uncheckAll() {
$("input:checkbox").each(function(){
this.checked=false;
})
}
</script>
</head>
<body>
<input type="checkbox" id="in1" />1<br />
<input type="checkbox" id="in2" />2<br />
<input type="checkbox" id="in3" />3<br />
<p>
<input type="button" name="checkAll" value="全选" />
<input type="button" name="uncheckAll" value="取消" />
</p>
</body>
</html>
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
<title>无标题文档</title>
</head>
<body>
<input name = 'kemu' type = 'checkbox' /> 数学 <span class = 'yuan'>1000</span>元
<input name = 'kemu' type = 'checkbox' /> 语文 <span class = 'yuan'>2000</span>元
<input name = 'kemu' type = 'checkbox' /> 音乐 <span class = 'yuan'>3000</span>元
</div>
</body>
<script>
$(":checkbox[name=kemu]").change(function(){
var money="";
$(":checkbox[name=kemu]").each(function(i,dom){
var me =$(this);
if (me.prop("checked")){
money+=parseFloat(me.next("span").text());
}
});
alert(money);
})
</script>
</html>
这是上面那位网友的答案,你说不行可能是顺序问题吧。
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-03-06
展开全部
$(":checkbox[name=kemu]").change(function(){
var money="";
$(":checkbox[name=kemu]").each(function(i,dom){
var me =$(this);
if (me.prop("checked")){
money+=parseFloat(me.next("span").text());
}
});
alert(money);
})
var money="";
$(":checkbox[name=kemu]").each(function(i,dom){
var me =$(this);
if (me.prop("checked")){
money+=parseFloat(me.next("span").text());
}
});
alert(money);
})
追问
大神,刚刚运行一下,还不行啊,麻烦再指导一下,谢谢啦.......
追答
var money=0;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询