使用jquery进行复选框管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jquery进行复选框管理相关的知识,希望对你有一定的参考价值。
// Read $('input[name=foo]').is(':checked') $('input[name=foo]').attr('checked') // Set $('input[name=foo]').attr('checked', true); // checked $('input[name=foo]').attr('checked', false); // unchecked
以上是关于使用jquery进行复选框管理的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Ajax、PHP 和 JQuery 检查多个输入复选框?