<一>判断checkbox的选中事件 var result=$(this).find("input[type=‘checkbox‘]").prop("checked"); result 是bool类型的值 true是选中的状态 false是没选中的状态
<二>radio的选中状态 //付款方式 $(‘div#pay-type input[type="radio"] ‘).each(function (e) { var radiotype = $(this).attr("checked"); if (radiotype == "checked") { paytype = $(this).attr("tid"); } }); var radiotype = $(this).attr("checked"); 如果radiotype == "checked" 就是选中 find就相当与children closet就相当于parent
时间: 2024-10-08 12:19:00