html之 让input标签只读不可编辑的方法
2018-12-24 本文已影响2人
CoderZb
做法多样,个人倾向第一种
做法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