質問編集履歴

1

現状を追記

2022/05/16 09:16

投稿

yc-www10
yc-www10

スコア17

test CHANGED
File without changes
test CHANGED
@@ -75,6 +75,13 @@
75
75
  $('.err_tel').css('display','block');
76
76
  }
77
77
  });
78
+
79
+ if($('.err_text').css("display") == "block" || $('.err_mail').css("display") == "block" || $('.err_tel').css("display") == "block") {
80
+  $('button[type="submit"]').prop('disabled',true);
81
+ } else {
82
+  $('button[type="submit"]').prop('disabled',false);
83
+ }
84
+
78
85
  });
79
86
 
80
87
  ```