<style>
.box{ width: 300px; height: 30px; position: relative; color: #cccccc; margin:300px auto; } .box input{ width: 200px; height: 25px; } .box label{ position: absolute; top: 8px; left: 10px; font-size: 12px; cursor: text; } </style>
<div class="box"> <input type="text" id="txt"> <label for="txt" id="message">请输入商品名称/店家名称</label> </div> <script> function $(id) { return document.getElementById(id); } $("txt").oninput = $("txt").onpropertychange = function () { if(this.value == ""){ $("message").style.display = "block"; }else{ $("message").style.display = "none"; } } </script>