奔腾年代

但行好事,莫问前程。

导航

js复选框操作

$(".checkall").click(function () {
                if (this.checked) {
                    $("input[name='isBuy']").each(function () { this.checked = true; });
                } else {
                    $("input[name='isBuy']").each(function () { this.checked = false; });
                }
            });

posted on 2013-11-12 14:51  奔腾年代  阅读(137)  评论(0编辑  收藏  举报