首页 > 代码库 > input 只读不能修改

input 只读不能修改

方法1: onfocus=this.blur() 
<input type="text" name="input1" value="http://www.mamicode.com/中国" onfocus=this.blur()> 

方法2:readonly 
<input type="text" name="input1" value="http://www.mamicode.com/中国" readonly> 

<input type="text" name="input1" value="http://www.mamicode.com/中国" readonly="true"> 

方法3: disabled 
<input type="text" name="input1" value="http://www.mamicode.com/中国" disabled>

input 只读不能修改