hello world!!!!!

写下自己的一些心得,写下自己问题的方式,写下程序之路的艰辛,希望能够有朝一日成为大牛。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
    var @(Perfix)_CheckArray=[];

            @(Perfix)_CheckArray.length=0;
            var checkedItems = $('input[name="@(Perfix)selectid"]'); 获取所有CHECKBOX
            $.each(checkedItems, function (i) {                       
                if (this.checked){
                    @(Perfix)_CheckArray.push($(this).attr("oid"));
                }    
            });
                   

           checkedItems = $('input[name="@(Perfix)selectid"]');
            $.each(checkedItems, function (i) {                     
                if(@(Perfix)_CheckArray.indexOf($(this).attr("oid"))>-1) 获取checkbox属性
                {
                    $(this).attr("checked", true);    设置CHECKBOX状态
                }
            });