Browse Source

修复 Form::checkbox 选中/取消选中全部选项时动态显示表单功能无效问题

jqh 4 years ago
parent
commit
d944814c4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/views/form/checkbox.blade.php

+ 1 - 1
resources/views/form/checkbox.blade.php

@@ -23,7 +23,7 @@
 @if(! empty($canCheckAll))
 <script once>
     $('[name="_check_all_"]').on('change', function () {
-        $(this).parents('.form-field').find('input[type="checkbox"]').prop('checked', this.checked);
+        $(this).parents('.form-field').find('input[type="checkbox"]:not(:first)').prop('checked', this.checked).trigger('change');
     });
 </script>
 @endif