美文网首页手账本
html之 让input标签只读不可编辑的方法

html之 让input标签只读不可编辑的方法

作者: CoderZb | 来源:发表于2018-12-24 15:11 被阅读2次

    做法多样,个人倾向第一种

    做法1:onfocus=this.blur()
    <input type="text"  name="CoderZB" maxlength="15" onfocus=this.blur()>
    
    做法2:disabled
    <input type="text"  name="CoderZB" maxlength="15" disabled>
    
    做法3:readonly
    <input type="text" name="CoderZB" maxlength="15" readonly>
    
    做法4:maxlength。 这种做法,虽说不可编辑,但是点击会有会有光标。
    <input type="text" name="CoderZB"  maxlength="0">
    
    image.png

    相关文章

      网友评论

        本文标题:html之 让input标签只读不可编辑的方法

        本文链接:https://www.haomeiwen.com/subject/oyjakqtx.html