我想要將輸入字段的類型從文本更改爲密碼。如何更改按鍵上的輸入字段的類型 - angularjs
在點擊輸入字段時,我可以將文本類型從文本更改爲密碼,但我也想在選項卡圖標的按鍵上將文本類型更改爲密碼。
任何人都可以幫助我。
我的代碼改變從文字上的onclick功能密碼類型是
<input type="text" name="password" class="form-control5 floating-input" ng-model="vm.password" required autocomplete="off" onclick="(this.type='password')" value="secure"/>
<span class="highlight"></span>
<span class="bar"></span>
<label for="password" class="field-name">Password</label>
label {
/*color:#999;*/
font-size:16px;
font-weight:normal;
position:absolute;
pointer-events:none;
left:5px;
top:10px;
transition:0.2s ease all;
}
.highlight {
position:absolute;
height:60%;
/*width:100px; */
top:25%;
left:0;
pointer-events:none;
opacity:0.5;
}
.floating-label {
position:relative;
margin-bottom:20px;
}
.floating-input , .floating-select {
font-size:14px;
padding:4px 4px;
display:block;
width:100%;
height:30px;
background-color: transparent;
border:none;
border-bottom:1px solid #ccc;
}
.floating-input:focus , .floating-select:focus {
outline:none;
}
.floating-input:focus ~ label, .floating-input:not([value=""]):valid ~ label {
top:-18px;
font-size:14px;
color:#333;
font-weight: 600;
}
分享自己的所有到目前爲止已經試過..也許一個plunker /小提琴? – tanmay
你可以使用javascript/jquery。? – Chirag