由于你的第二个和第三个输入是div,不像你的第一个输入,你必须使用 find() 选择它们:
find()
if (jQuery(this).find('input').prop("checked")) {
你正在使用 jQuery(this).prop("checked") 哪里 this 是指div,而不是其中的输入。
jQuery(this).prop("checked")
this