文本框只读
在我们写Html的时候,我们希望表单中的文本框是只读的,只需要显示信息就足够了,
如使<input type="text" name="input1" value="回锅肉"> 的内容不可以修改。有如下几种解决方法。
方法1: onfocus=this.blur()
<input type="text" name="input1" value="回锅肉" onfocus=this.blur()>
方法2:readonly
<input type="text" name="input2" value="黄焖鸡" readonly>
<input type="text" name="input3" value="西红柿炒鸡蛋" readonly="true">
方法3: disabled
<input type="text" name="input4" value="鸡汤" disabled>
<------文本域等通用!------>
各位同学,这虽简单,但是很实用哦!
相关阅读
在用WORD或者WPS画电路的结构框图时,需要在矩形框中放置文本框,并且常常需要将文本框和文本框混叠在一起,但是在两个文本框挨得很近
js去除 html 中 input 的readOnly(只读)属性
js去除 html 中 input 的readOnly属性:document.getElementById(“input1”).readOnly=true或者 false
在日常工作中,经常会从网页上复制一些表格或内容粘贴进excel表格,但是会发现有很多网页元素在excel表中删除不掉,比如说文本框、单选
最好的文本框样式 最漂亮的文本框样式 textbox css样
https://www.cnblogs.com/coolsundy/p/4229439.html
将PPT中所有文本框里的文字提取出来打开PPT,按ALT+F11打开VBA编辑器,在左面的工程视图里点击右键,选择插入->模块,添加一个模块,名字都