要求:
用戶在輸入框輸入內容時,上面的大號字體盒子con顯示(這里面的字號更大)
實作思路:
- 表單檢測用戶輸入:給表單添加鍵盤事件
- 同時把快遞單號里面的值
value獲取過來賦值給con盒子innerText做為內容 - 如果快遞單號里面內容為空,則隱藏大號字體盒子
con盒子
代碼實作:
HTML:
<div >
<div >123</div>
<input type="text" placeholder="請輸入您的快遞單號" >
</div>
CSS:
* {
margin: 0;
padding: 0;
}
.search {
position: relative;
width: 178px;
margin: 100px;
}
.con {
display: none;
position: absolute;
top: -40px;
width: 171px;
border: 1px solid rgba(0, 0, 0, .2);
box-shadow: 0 2px 4px rgba(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;
}
JS:
var con = document.querySelector('.con');
var jd_input = document.querySelector('.jd');
jd_input.addEventListener('keyup', function() {
if (this.value =https://www.cnblogs.com/jacklzx/archive/2020/10/11/='') {
con.style.display = 'none';
} else {
con.style.display = 'block';
con.innerText = this.value;
}
});
// 當失去焦點,就隱藏這個con盒子
jd_input.addEventListener('blur', function() {
con.style.display = 'none';
});
// 當獲得焦點,就顯示這個con盒子
jd_input.addEventListener('focus', function() {
if (this.value !== '') {
con.style.display = 'block';
}
});
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/167587.html
標籤:其他
