jquery判断复选框是否选中,alert($("#id").attr("checked")),只有选...
发布网友
发布时间:2024-09-17 05:35
我来回答
共5个回答
热心网友
时间:2024-09-29 03:10
你这个#id是什么。ul的id吗?还有你checkbox里的id都是相同的,判断是否被选中,你的方法没错,把alert里的id换成li的的id,不过li里的id换成a1.。。a5,如果想提取值得话,我提供两种方法,
第一种:
$('input[@type="checkbox"][@checked]').each(function(){
alert($(this).val());
});
第二种:
var str;
var checkBoxs = document.getElementsByName("DATA");
for (var i = 0; i < checkBoxs .length; i++) {
if (checkBoxs[i].checked){
str= str+ checkBoxs[i].value + ',';
}
}
后台在解析str,得到数组
热心网友
时间:2024-09-29 03:14
$('button').click(function(event) {
/* Act on the event */
/* if ($("input:first").prop("checked")) {
alert("ok");
}else{
alert("no");
};*/
alert($("input:first").prop("checked"));
});
热心网友
时间:2024-09-29 03:13
//改为使用prop()方法来获取属性吧:
$("#id").prop("checked")
热心网友
时间:2024-09-29 03:14
$(function(){
$("input").live("click",function(){
if($(this).prop("checked")){
if($(this).val()=="a1"){
alert("true");
}else{
alert("false");
}
}
});
});
你试试,这个是在JS文件里的,不是在页面里的
热心网友
时间:2024-09-29 03:16
id="a 有些问题,id 不要重复
alert($("input[name=a\[\]]").prop("checked"));