基本表单验证
在这个问题中,您要确保文本框不为空。完成以下步骤:
创建一个文本输入框。编写一个函数,如果文本框为空,则将文本框的边框变为红色。
(如果值为“”,则为空)。
如果值不为空,边框应该恢复正常。
当用户释放一个键 (onkeyup) 时,运行您刚刚创建的函数。
请在我编码错误的地方更正我的代码?
let form = document.getElementById("form_Text").value;
document.getElementById("form_Text").onfocus = function() {
if (form == "") {
document.getElementById("form_Text").style.backgroundColor = "red";
document.getElementById("showText").innerHTML = "Form is empty";
} else {}
document.getElementById("form_Text").onkeyup = function() {
document.getElementById("form_Text").style.backgroundColor = "white";
document.getElementById("showText").innerHTML =
"Form is not Empty, No red Background";
};
};
Fill Your Form:
<input id="form_Text" type="text" />
<div id="showText"></div>
缥缈止盈
相关分类