js動態(tài)修改input輸入框的type屬性(實現(xiàn)方法解析)
需要實現(xiàn)的效果:一個輸入框,當(dāng)輸入框未獲得焦點的時候,value 值為 “密碼”;當(dāng)輸入框失去焦點的時候,輸入內(nèi)容顯示為”*****”
<input name=”password” type=”text” id=”showPwd” tabindex=”2″ class=”input” value=”密碼” />
我們很直接會想到下面的js
$(“#showPwd”).focus(function(){
$(this).attr(‘type','password');
});
發(fā)現(xiàn)并沒有實現(xiàn)預(yù)期效果,出現(xiàn) uncaught exception type property can't be changed 錯誤,查看jQuery 1.42源碼 1488 行
// We can't allow the type property to be changed (since it causes problems in IE)
if ( name === “type” && rtype.test( elem.nodeName ) && elem.parentNode ) {
jQuery.error( “type property can't be changed” );
}
jQuery 修改不了用源生的JS呢?
$(“#pwd”).focus(function(){
$(“#pwd”)[0].type = ‘password';
$(“#pwd”).val(“”);
});
發(fā)現(xiàn)在FF下可以修改并將密碼輸入框type 修改為 “password” 并將 value設(shè)置為空,而IE下卻提示無法得到type屬性,不支持該命令。 彈出 type 看看真的無法得到嗎?
$(“#showPwd”).focus(function(){
alert($(“#showPwd”)[0].type);
$(“#showPwd”)[0].type = ‘password';
$(“#showPwd”).val(“”);
});
發(fā)現(xiàn)彈出text ,原來不是無法得到,只是IE下不能修改。 因此,我們想到可以先remove然后再生成一個type是password的密碼輸入框。
下面type為password的輸入框
<input name=”password” type=”password” id=”password” class=”input” style=”display: none;” />
$(“#showPwd”).focus(function() {
var text_value = $(this).val();
if (text_value == this.defaultValue) {
$(“#showPwd”).hide();
$(“#password”).show().focus();
}
});
$(“#password”).blur(function() {
var text_value = $(this).val();
if (text_value == “”) {
$(“#showPwd”).show();
$(“#password”).hide();
}
});
最終效果: 當(dāng)輸入框獲得焦點的時,輸入的內(nèi)容顯示為“****”;當(dāng)失去焦點的時,內(nèi)容為空時顯示“密碼”。
- Vue.js 帶下拉選項的輸入框(Textbox with Dropdown)組件
- Vue.js數(shù)字輸入框組件使用方法詳解
- JS 仿支付寶input文本輸入框放大組件的實例
- JavaScript組件開發(fā)之輸入框加候選框
- JS通過正則限制 input 輸入框只能輸入整數(shù)、小數(shù)(金額或者現(xiàn)金) 兩位小數(shù)
- js與jquery實時監(jiān)聽輸入框值的oninput與onpropertychange方法
- js監(jiān)聽輸入框值的即時變化onpropertychange、oninput
- JS實現(xiàn)在網(wǎng)頁中彈出一個輸入框的方法
- js監(jiān)聽input輸入框值的實時變化實例
- JavaScript實現(xiàn)一個輸入框組件
相關(guān)文章
bootstrap動態(tài)添加面包屑(breadcrumb)及其響應(yīng)事件的方法
這篇文章主要介紹了bootstrap動態(tài)添加面包屑(breadcrumb)及其響應(yīng)事件的方法,涉及js數(shù)據(jù)傳輸及定義響應(yīng)事件相關(guān)操作技巧,需要的朋友可以參考下2017-05-05JavaScript實現(xiàn)簡單進(jìn)度條效果
這篇文章主要為大家詳細(xì)介紹了JavaScript實現(xiàn)簡單進(jìn)度條效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2020-03-03如何使用Bootstrap的modal組件自定義alert,confirm和modal對話框
本文我將為大家介紹Bootstrap中的彈出窗口組件Modal,此組件簡單易用,效果大氣漂亮且很實用,感興趣的朋友一起學(xué)習(xí)吧2016-03-03