gpt4 book ai didi

javascript - 获取 JavaScript oninput 函数来更改背景颜色?

转载 作者:行者123 更新时间:2023-11-28 07:08:09 26 4
gpt4 key购买 nike

我有一些代码适用于用户填写详细信息的密码表单,然后只有当他们输入的数字/年龄大于指定的数字/年龄时,其中的 2 个方框才有效或可输入。我现在想更进一步,让用户明白这些框只能在特定时间编辑,方法是将它们着色为不同的颜色。由于某种原因,尽管 JS 中的新代码不起作用。代码如下:

<div class="container">
<div class="jumbotron" id="firstform">
<h1>Sign up page</h1>
<form id="myform">

<label>Username </label> <input type="text" name="uname" id="uname" data-placement="bottom" title="" data-original-title="Username must be unique" class="mytooltip"><br>

<div class="pwordCheck">
<label>Password </label> <input type="password" id="pword" data-placement="bottom" title="" onkeyup="passwordValidation(); return false;" data-original-title="Password must be more than 6 characters long" class="mytooltip"><br>
<label>Confirm Password </label> <input type="password" id="confpword" onkeyup="passwordValidation(); return false;" data-placement="bottom" title="" data-original-title="Passwords must match" class="mytooltip">
<span id="themessage" class="themessage"></span><br>
</div>

<label>Email </label> <input type="email" id="e-mail"><br>

<label>Age </label> <input type="number" id="age" oninput="ifOfAge(); return false;"><br>

<label>Can you drive? </label> <input type="text" id="drive" disabled><br>

<label>What is your occupation? </label> <input type="text" id="occupation" disabled><br>

<input type="submit" value="Submit" onclick="usernameAlreadyExists(); return false;">
</form>

</div>



</div>

CSS:

input#drive{
background-color: #999;
}

input#occupation{
background-color: #999;
}

js:

function ifOfAge() {

var age = document.getElementById("age");
var drive = document.getElementById("drive");
var occupation = document.getElementById("occupation");
var white = "#fff";

if (age.value >= 21) {
drive.disabled = false;
occupation.disabled = false;
} else if (age.value >= 16) {
drive.disabled = false;
occupation.style.backgroundColor = white;
} else {
drive.disabled = true;
occupation.disabled = true;
drive.style.backgroundColor = white;
occupation.style.backgroundColor = white;
}


}

最佳答案

颜色必须用引号引起来。如下图。无论你在哪里使用白色,都用引号括起来

 drive.style.backgroundColor = "white";

关于javascript - 获取 JavaScript oninput 函数来更改背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32819273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com