jquery动态控制checkbox选中状态

jquery动态控制checkbox选中状态

后台传一个字符串 1,2,3
如何循环把checkbox value或者id值为 1 2 3 的这三个checkbox选中。

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script class="jquery library" src="/js/sandbox/jquery/jquery-1.8.2.min.js" type="text/javascript"></script>
    <title>RunJS 演示代码</title>
    <script>
    $(document).ready(function(){
    var str = "1,2,3";
    $(str.split(",")).each(function (i,dom){
        $(":checkbox[value='"+dom+"']").prop("checked",true);
        $(":checkbox[id='"+dom+"']").prop("checked",true);
    });
});
 </script>
  </head>
<body>
    <label><input type="checkbox" />1</label>
    <label><input type="checkbox" />2</label>
    <label><input type="checkbox" />3</label>
  </body>
</html>

猜你喜欢

转载自blog.csdn.net/u013116345/article/details/86677219
今日推荐