写写程序,一种成就的感觉

写写程序,一种成就的感觉

导航

jq 判断单选是否选中

Posted on 2013-04-01 12:04  hateyoucode  阅读(312)  评论(0编辑  收藏  举报

if(!$("input[name=agree]").attr('checked'))
    {
        alert("请勾选同意用户服务条款!");
        return false;
    }