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
| <html> <head> <style> input { color: #999 } </style> </head>
<body> <input type="text" value="手机">
<script> var text = document.querySelector('input') text.onfocus = function () { if (this.value === '手机') { this.value = '' } this.style.color = '#333' } text.onblur = function () { if (this.value === '') { this.value = '手机' } this.style.color = '#999' } </script> </body>
</html>
|