javascript 当我在它之间切换时,表单元素一团糟[关闭]

qlfbtfca  于 2023-11-15  发布在  Java
关注(0)|答案(1)|浏览(122)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
昨天就关门了。
Improve this question
注册表单的元素和模型上的一样,只要我点击切换器切换到登录表单,表单的元素就完全乱了套,甚至当我切换回注册表单时,元素也不会变成原来的样子,那会是什么呢?

waxmsbnn

waxmsbnn1#

JS代码应该是**display =“flex”而不是“block”。另外,您需要给予class=“registration_form”**到您的login_form。

function showRegistrationForm() {
  document.getElementById("registration_form").style.display = "flex";
  document.getElementById("login_form").style.display = "none";
}

// Функція для показу форми входу
function showLoginForm() {
  document.getElementById("registration_form").style.display = "none";
  document.getElementById("login_form").style.display = "flex";
}

字符串

相关问题