首页 > 代码库 > checkbox实现反选

checkbox实现反选

<input type="checkbox" name="items" value="http://www.mamicode.com/足球"/>足球

<input type="checkbox" name="items" value="http://www.mamicode.com/篮球"/>篮球

<input type="checkbox" name="items" value="http://www.mamicode.com/乒乓球"/>乒乓球

<input type="checkbox" name="items" value="http://www.mamicode.com/棒球"/>棒球

<input type="button" id="send" value="http://www.mamicode.com/提交"/>提交


$("#send").click(function(){

    $("[name=items]:checkbox").each(function(){

        $(this).attr("checked",!$(this).attr(‘checked‘))

        //或者this.checked=!this.checked;

    })

})





checkbox实现反选