您好,登錄后才能下訂單哦!
這篇文章主要介紹jQuery中如何制作input提示內容,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
我們都知道HTML5的input新屬性有 placeholder="",那么這個不兼容IE低版本我們只能用腳本來寫了。
首先HTML新建一個input
<input type="text" class="input" value="請輸入搜索內容" />
然后我們再引入相應的js庫,再使用jQuery
<script src="js/jquery-1.8.3.min.js"></script> <script> $(".input").bind({ focus:function(){ if (this.value == this.defaultValue){ this.value=""; } }, blur:function(){ if (this.value == ""){ this.value = this.defaultValue; } } }); </script>
簡單吧,這樣就可以了,那么這個是input的屬性是text,我們要密碼password也一樣可以顯示IE低版本,我們用的方法就是用兩個input,一個text默認顯示,一個password默認隱藏,當text獲取焦點時password顯示,text隱藏,沒有輸入內容失去焦點text顯示,password顯示,好了,廢話不多說,看代碼!
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>密碼框提示</title> </head> <body> <input type="text" value="登錄密碼" class="show" > <input type="password" class="log_paw" > <script src="js/jquery-1.8.3.min.js"></script> <script> $('.show').focus(function(){ var text_value = $(this).val(); if (text_value == this.defaultValue) { $(this).hide(); $(this).next('input.log_paw').show().focus(); } }); $('input.log_paw').blur(function() { var text_value = $(this).val(); if (text_value == '') { $(this).prev('.show').show(); $(this).hide(); } }); </script> </body> </html>
以上是“jQuery中如何制作input提示內容”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。