0
<p class="input-group pwdField">
<input type="password" name="password" placeholder="Enter your Password" required>
<i class="fa fa-eye"></i>
</p>
這是我的HTML標記和我的jQuery代碼如下。爲什麼我的JQuery切換密碼可見性不起作用?
$(function() {
$(".input-group").children("i").click(function() {
$(this).toggleClass("fa-eye fa-eye-slash");
var inputField = $(".pwdField").children().first();
if ($(inputField).attr("type", "password")) {
$(inputField).attr("type", "text");
} else {
$(inputField).attr("type", "password");
}
});
}); // End of document.ready();
請幫助我,當我點擊的眼睛圖標在輸入字段,everythng是可以正常使用,但是當我再次點擊,輸入字段並沒有改變自己的屬性後面鍵入從鍵入e =「密碼」 =「文本」
呀。在我發佈問題後得到它。但感謝你的寶貴答案。 – srithan