zl程序教程

您现在的位置是:首页 >  其它

当前栏目

<textarea>标签的使用

标签 gt lt textarea 使用
2023-09-27 14:25:19 时间

https://www.w3school.com.cn/tags/tag_textarea.asp

 

<textarea style="position:absolute; top:140px;left:670px;" rows="5" cols="60" disabled="disabled">
123
</textarea>

 

固定不给拖动的方法

style="position:absolute; top:140px;left:670px;resize:none;"

字体设置颜色

style="color:red"
 
不可输入的方法 
<a-textarea   readonly="readonly"/>

 

 

替换内容

 

document.getElementById("logtxtid").value = "123\n;再见!"     其中换行符为\n