我是靠谱客的博主 追寻大炮,最近开发中收集的这篇文章主要介绍input禁止输入,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

input标签禁止输入的方法:

  1.   添加   οnfοcus="this.blur()"  使元素失去焦点  
  2.   将属性   maxlength  的值设为 0  

例如:<input type="number" name="" id="" max="10" min="1" οnfοcus="this.blur()">

例如:<input type="text" maxlength="0">

input标签禁用的方法:

  1.   添加   disabled    禁用属性  
  2.   添加   readonly    只读属性  

注意:“禁用” 和 “禁止输入” 是有区别的,禁用会使input自带的功能丧失,标签呈灰色状态。而禁止输入仍能保持原有功能

 

 注意:下方是源代码,可直接复制

<form action="">

    <input type="text" placeholder="输入用户名" value="" maxlength="4">

    <input type="password" name="" id=""maxlength="6">

    <br>

    <input type="radio" name="chgo" id="">yes

    <input type="radio" name="chgo" id="">no

    <br>

    <input type="checkbox" name="cheeses" id="">one

    <input type="checkbox" name="cheeses" id="">two

    <input type="checkbox" name="cheeses" id="">three

    <input type="file" name="" id="" multiple>

    <input type="submit" value="register">

    <input type="reset" value="reset">

    <input type="button" value="button">

    <button>button</button>

    <input type="number" name="" id="" max="10" min="1" οnfοcus="this.blur()">

    <input type="range" max="20" min="0" value="20">

    <input type="color" name="" id="">

    <input type="date">

    <br>

    <input type="checkbox" name="" id="kikout">

    <label for="kikout">打钩</label>

    <select multiple>

      <option value="">one</option>

      <option value="">two</option>

      <option value="">three</option>

    </select>

    <textarea style="resize: none;"></textarea>

  </form>

最后

以上就是追寻大炮为你收集整理的input禁止输入的全部内容,希望文章能够帮你解决input禁止输入所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部