zoukankan      html  css  js  c++  java
  • input 设置长度限制 去除默认样式

    1.

    <input id="mobile" maxlength="11>

    2. input type 为 number 时,maxlength 失效

    <input type="number" id="mobile" oninput="if(value.length>11)value=value.slice(0,11)">

    reset 默认样式

    input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
      border: 0 none;
      outline:none;
      background: none;
      -webkit-appearance: none;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
    }
  • 相关阅读:
    在centos上搭建Git服务器
    glog日志库移植Android平台
    水葱
    路易斯安娜鸢尾
    再力花
    矮生百慕大
    洒金珊瑚
    八角金盘
    锦绣杜鹃
    茶梅球
  • 原文地址:https://www.cnblogs.com/echolife/p/10450660.html
Copyright © 2011-2022 走看看