Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个页面,其中包含使用剃须刀代码动态生成的复选框。我需要使用 Jquery 获取选定的复选框。如果有任何比 Jquery 更简单的方法来实现这一点,请建议我。
$( "输入[类型=复选框] :checked" )
您可以像这样在 Jquery 中获取复选框状态(选中/未选中)
$('[type="checkbox"]').each(function(){ alert($(this).is(":checked")) });