From ec545f37a38924e153db9b3b1a36aee4ca73592d Mon Sep 17 00:00:00 2001 From: hayao Date: Fri, 6 Aug 2021 21:51:16 +0900 Subject: [PATCH] =?utf8?q?[fix]=20:=20innerHTML=E3=81=AE=E5=88=9D=E6=9C=9F?= =?utf8?q?=E5=8C=96=E3=81=AB=E7=A9=BA=E6=96=87=E5=AD=97=E3=82=92=E4=BD=BF?= =?utf8?q?=E3=81=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sanmoku/script/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanmoku/script/main.js b/sanmoku/script/main.js index fcde2fd..f27027e 100644 --- a/sanmoku/script/main.js +++ b/sanmoku/script/main.js @@ -61,7 +61,7 @@ const UpdateCurrentConfig = function() { p2.innerText = "人数: " + PlayerNumer + "人 現在: " + PlayerMarks[CurrentPlayer] // 作成した枠を文書に挿入 - CurrentConfig.innerHTML = null; // 枠の中の文書を削除 + CurrentConfig.innerHTML = "" ; // 枠の中の文書を削除 CurrentConfig.appendChild(p1); // ゲーム設定を挿入 CurrentConfig.appendChild(p2); // プレーヤー情報を挿入 } -- 2.11.0