您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關利用javascript模仿一個快遞單號查詢功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
具體內容如下
要求:當我們在文本框中輸入內容時,文本框上面自動顯示大字號的內容
分析:
輸入內容時,上面的大盒子會自動顯示出來(這里字號更大)
表單檢測用戶輸入,給表單添加鍵盤事件
同時把快遞單號里面的值(value)獲取過來復制給大盒子作為內容
如果快遞單號里面內容為空,就隱藏大盒子
當失去焦點,大盒子也隱藏
注意:keydown 和 keypress 在文本框里面的特點 : 他們兩個事件觸發的時候,文字還沒有落入文本框中,keyup 事件觸發的時候,文本已經落入文本框里了
<style> * { padding: 0; margin: 0; } .search { position: relative; width: 178px; margin: 100px; } .con { display: none; position: absolute; top: -48px; width: 171px; border: 1px solid rgba(0, 0, 0, 0.2); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); padding: 5px 0; font-size: 18px; line-height: 20px; color: #333; } .con::before { content: ""; width: 0; height: 0; position: absolute; top: 28px; left: 18px; border: 8px solid #000; border-style: solid dashed dashed; border-color: #fff transparent transparent; } </style> </head> <body> <div class="search"> <div class="con"></div> <input type="text" placeholder="請輸入您的快遞單號" class="jd" /> </div> <script> var con = document.querySelector(".con"); var jd_input = document.querySelector(".jd"); jd_input.addEventListener("keyup", function () { if (this.value == "") { con.style.display = "none"; } else { con.style.display = "block"; con.innerHTML = this.value; } }); //當失去焦點,就隱藏盒子 jd_input.addEventListener("blur", function () { con.style.display = "none"; }); //當獲得焦點,就顯示盒子 jd_input.addEventListener("focus", function () { if (this.value !== "") { con.style.display = "block"; } }); </script> </body>
關于利用javascript模仿一個快遞單號查詢功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。