回答編集履歴

1

正規表現とタイトルにあるので正規表現に変更

2018/11/01 03:03

投稿

root_jp
root_jp

スコア4666

test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  const input = document.querySelector("#input").value;
16
16
 
17
- if (input !== "" && input.length > 7) {
17
+ if (/.{8,}/.test(input)) {
18
18
 
19
19
  alert("7文字以内で入力してくださいね。");
20
20