程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 函數-jquery 選中 checkbox undefined

函數-jquery 選中 checkbox undefined

編輯:編程解疑
jquery 選中 checkbox undefined
 "aoColumnDefs":
                 [
                   {'bVisible': false, 'aTargets': []},
                   {'bSortable': false, 'aTargets': []},
                 {
//                      "sTitle": "we",
//                      "sClass" :"center",
                        "sWidth": "10%",
                        "mData" : null,
                        "aTargets" : [ 0 ],
                        "mRender": function(data){
                            return "<input type='checkbox' name='productCheckbox' id='"+data.businessId+"' value='"+data.businessId+"'>";
                        }
                    }, 
  success: function(data){
                        console.log("checkboxselected============="+data.actConfg);
                        $(data.actConfg).each(function(i,item){
                            console.log("checkboxselected============="+item.businessId);

                            //$('input:checkbox').eq(0).attr("checked",'true');
                            $(":checkbox[value='22']").prop("checked",true);
                            $("input:checkbox[value='"+item.businessId+"']").attr('checked','true');
                            //$("input[id='"+item.businessId+"']:checkbox").attr("checked",true)
                            console.log("hhhhhhhhhhhhh=============");
                        });
                        }

操作不了動態生成的,靜態直接寫的可以為什麼? $("input:checkbox[value='"+item.businessId+"']")這個取到的是undefined

最佳回答:


 $("input:checkbox[value='"+item.businessId+"']").attr('checked','true');
 改成
 $("input:checkbox[value='"+item.businessId+"']").prop('checked','true');

 對於
  checked, selected 或者 disabled 使用prop()方法設置true和false
code__code
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved