使用jquery在html中加载页面后动态检查复选框

时间:2013-05-16 19:57:41

标签: php jquery html

我正在编写包含复选框的页面。用户检查其中一些,并将它们的值存储在某个表中。现在,如果用户再次访问该页面,则为该表读取先前存储的值。现在我想检查那些存储了值的盒子,其余的未经检查。有谁能够帮我 ?提前谢谢..

3 个答案:

答案 0 :(得分:2)

$(document).ready(function () {
    //Read table

    //Check appropriate checkboxed
    $('#cb2').attr('checked', 'checked');
});

答案 1 :(得分:1)

使用.prop().attr()

非常简单
$('.some-selector-for-radio-or-checkbox').prop('checked', true);

答案 2 :(得分:0)

$(document).ready(function () {
    //Read table

    //Check appropriate checkboxed
    $('#Your CheckBox ID ').attr('checked', 'checked');
});