我已经尝试了很多尝试来解决这个问题,但我无法:我想用 and 制作两个示例输入框,value="password"
这样value ="Confirm password"
当您单击它时,值类型会从更改text
为password
我设法改变了一个盒子,它是password
一个但不是一个。confirm password
你看到问题是因为input[type="password"]
我只能在其中添加一个位置。当我点击另一个confirm text box
它直接跳转到password text box
HTML
<input type = "passwords" id="passwords" name="passwords" value ="Password" onclick="passwords();" />
<input type = "confirm" id="confirm" name="confirm" value ="Confirm Password" onclick="confirms();" />
CSS
input[type="password"]
{
background: transparent;
border:none;
color:#2185c5;
height:41px;
width:273px;
padding-left:35px;
border-radius:3px;
font-size:20px;
position:absolute;
top:690px;
left:353.5px;
position:absolute;
z-index:11;
}
JS
function passwords()
{
document.getElementById("passwords").value= "";
document.getElementById('passwords').type = 'password';
}
function confirms()
{
document.getElementById("confirm").value= "";
document.getElementById('confirm').type = 'password';
}