点击隐藏文字

Posted verayangnakiss

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击隐藏文字相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
  <style type="text/css">
   *{
    margin: 0;
    padding: 0;
   }
   .box{
    width: 400px;
    height: 200px;
    margin: 100px auto;
    border: solid 1px grey;
   }
   input{
    width:200px;
    height: 50px;
    margin-left: 20px;
    margin-top: 75px;
    color: #ccc;
   }
   button{
    width: 50px;
    height: 50px;
    margin-left: 20px;
   }
  </style>
  <script type="text/javascript">
  window.onload = function(){
   function $(id){
    return document.getElementById(id);
   }
   
    $(‘txt‘).onfocus = function(){
     if(txt.value==‘请输入您的号码进行过查询‘){
     txt.value = ‘‘;
     txt.style.color = ‘#333‘;
                }
           }
    txt.onblur = function(){
     if(txt.value==‘‘){
     txt.value = ‘请输入您的号码进行过查询‘;
     txt.style.color = ‘#ccc‘;
     }
     
    }
   
   
   var attr = [10066];
   $(‘btn‘).onclick = function(){
    for(var i=0;i<attr.length;i++){
     if($(‘txt‘).value==attr[i])
     {
      alert(‘恭喜,您中奖了‘);
     }
     else{
      alert(‘抱歉,欢迎下次再来‘);
     }
    }
   }
  }
  </script>
 </head>
 <body>
  <div class="box">
   <input type="text" value="请输入您的号码进行过查询" id="txt" />
   <button id="btn">查询</button>
  </div>
    </body>
</html>

 

效果相当于css中的peacholder

以上是关于点击隐藏文字的主要内容,如果未能解决你的问题,请参考以下文章

搜索引擎点击隐藏文字

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

Element-ui 之 多级路由导航(已解决点击收起展开按钮时的文字不隐藏以及文字卡顿现象)

如何隐藏百度地图的上默认的文字标签

html如何做个链接,一点击就在下面显示隐藏的文字内容

table中td文字超出长度用省略号隐藏超出内容,鼠标点击内容全部显示