DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
.tip {
position: relative;
display: none;
width: 170px;
height: 25px;
box-shadow: 0 2px 5px #999;
}
.tip::before {
content: '';
width: 0;
height: 0;
position: absolute;
top: 25px;
margin-left: 20px;
border: 7px solid transparent;
border-top-color: #fff;
}
input {
width: 160px;
height: 20px;
margin-top: 7px;
color: #999;
font-size: 10px;
}
style>
head>
<body>
<div class="tip">
div>
<input type="text" placeholder="请输入快递单号:" class="jd" maxlength="18">
<script>
var tip = document.querySelector('.tip');
var input = document.querySelector('.jd');
input.addEventListener('keyup', function () {
if (this.value == '') {
tip.style.display = 'none';
} else {
tip.style.display = 'block';
tip.innerText = this.value;
this.style.color = '#000';
}
})
input.addEventListener('blur', function () {
tip.style.display = 'none';
})
input.addEventListener('focus', function () {
if (this.value != '') {
tip.style.display = 'block';
}
})
script>
body>
html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75