function selectAll(obj) {
            if (obj.checked) {
                $("input[type='checkbox']").each(function () { $(this).attr('checked', 'checked'); });
            } else {
                $("input[type='checkbox']").each(function () { $(this).removeAttr('checked'); });
            }
        }
 function searchPoint() {
             var currentPoints = "";
            $("input[name='r1']").each(function () { if ($(this).attr('checked')) { currentPoints += $(this).val() + "@"; } });
            if (currentPoints != "") {
                currentPoints = currentPoints.substring(0, currentPoints.length - 1);
            }
        }

 

posted on 2013-10-17 09:28  莫等闲也  阅读(996)  评论(0编辑  收藏  举报