设置复选框选中(页面显示时作用)

来源:互联网 发布:淘宝网店客服怎么设置 编辑:程序博客网 时间:2024/05/17 03:09
//设置复选框选中
 function choseCheckBox(){
  var theChoseds = '${basePlace.keyAttribute}';
  var strs= new Array(); 
  strs = theChoseds.split(",");
  for(i = 0; i < strs.length ; i++){
   $("[name = keyAttribute]:checkbox").each(function () {
       var theValue = $(this).val();
     if(theValue == strs[i]){
      $(this).attr("checked", true);
     }
   })
  }
 }