checkboxradio使用jquery改变状态
Posted qinyios
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkboxradio使用jquery改变状态相关的知识,希望对你有一定的参考价值。
$(‘input[type=checkbox]:checked‘).each(function(index,elem) $(elem).attr("checked",false); ); $(‘input[type=radio]:checked‘).each(function(index,elem) $(elem).attr("checked",false); );
以上是关于checkboxradio使用jquery改变状态的主要内容,如果未能解决你的问题,请参考以下文章