码迷,mamicode.com
首页 > 其他好文 > 详细

仿淘宝搜索框(点击隐藏文字)

时间:2018-03-20 22:09:17      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:span   搜索框   document   load   20px   内容   return   隐藏   put   

html部分

<body>
<div class="search">
    <input type="text" id="txt"/>
    <label for="txt" id="message">必败的国际大牌</label>
</div>
</body>

css部分

<style>
        .search {
            width:300px;
            height: 30px;
            margin: 100px auto;
            position: relative;
        }
        .search input {
            width:200px;
            height:25px;
            
        }
        .search label {
            font-size: 12px;
            color:#ccc;
            position: absolute;
            top:8px;
            left:20px;
            cursor: text;
        }
    </style>

js部分

<script>
        window.onload = function(){
            function $(id){return document.getElementById(id);}
            //oninput 大部分浏览器支持  检测用户表单输入内容
            //onpropertychange  ie678  检测用户表单输入内容
            $("txt").oninput = $("txt").onpropertychange = function(){
                if(this.value == " ")
                {
                    $("message").style.display = "block";
                }
                else
                {
                    $("message").style.display = "none";

                }
            }
        }
    </script>

 

仿淘宝搜索框(点击隐藏文字)

标签:span   搜索框   document   load   20px   内容   return   隐藏   put   

原文地址:https://www.cnblogs.com/zhoujingguoguo/p/8612997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!