$(“#”+ checkValue [i])。prop('checked',true)不能动态地在Jquery中工作

时间:2016-09-16 12:32:24

标签: jquery

我正在尝试将动态选中的属性设置为基于值的复选框,当我将警报设置为仅时间属性分配的复选框值时,如果我删除警报它没有显示已检查的属性。

$( document ).ready(function() { 
var objValue={};
         objValue= {
            ID:1,
         };
        $.post('response.php',objValue,function(response){
            var obj=$.parseJSON(response);
        checkValue=obj.sector_category_id.split(',');            
            alert(checkValue.length);
            for(i=0;i<=checkValue.length;i++){               
                if($("#"+checkValue[i]).val()==checkValue[i]){                    
                    $("#"+checkValue[i]).prop('checked', true);
                }
            }     
});

0 个答案:

没有答案