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 检查复选框选中的属性
访问复选框以检查它是否被选中的正确方法是什么?是否有必要先检查该元素是否存在于 DOM 中,然后查看是否已检查?
您将使用选中的选择器以及 Jquery 的 is 方法
if($('#chkbox').is(':checked')){ }
您可以使用以下条件查看复选框是否被选中。
if( $("input:checked").length == 1 ) { //Checkbox is selected and Do stuff here }