我有大约 100 门课程,其中包含有课程的复选框,course-chkbox
我正在使用以下代码:
//Make sure user has checked at least one course
if ($('.course-chkbox:checked').length === 0) {
alert('You have to have at least one course selected');
return false;
}
基于我使用的是最新版本的 jQuery,这是正确的吗?
根据一些谷歌搜索,有很多关于如何解决同一问题的建议......
1. Usage of is("checked")
2. Usage of prop()
3. Looping through the elements involved and check each element if it's checked
什么解决方案是最好的,为什么?