密碼的兩個輸入我試過很多嘗試來解決這一個,但我不能: 我希望有兩個樣品輸入框與value="password"
和value ="Confirm password"
以這樣的方式,當你點擊它值類型是從text
改爲password
創造CSS
我已成功地改變一個盒子,是一個password
但不是confirm password
one.You看到的問題是因爲在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';
}
** [placeholder屬性不應該被用來作爲一種替代的標籤。(HTTP://www.whatwg .org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#the-placeholder-attribute)**(HTML5規範)。通過'for' /'id'屬性關聯的'label'元素是表單字段的正確標籤。 – FelipeAls