
The task we are going to perform in this article is how do we display a text area in HTML. Let’s dive into the article for getting a clear idea on how we display text area.
HTML textarea标签定义了一个多行纯文本编辑控件。由于文本空间可以容纳无限数量的字符(通常是Courier),所以文本以固定宽度字体显示。在表单中,textarea通常用于收集用户输入,例如评论或评价。在提交表单后,表单数据中的引用将需要name属性。
Let’s look into the following examples to know more about how do we display a textarea in HTML.
Example 1
在下面的示例中,我们使用了多行输入控件。
立即学习“前端免费学习笔记(深入)”;
在运行上述脚本时,输出窗口弹出,显示了用于输入姓名的输入字段和用于自我介绍的文本区域,以及一个提交按钮。如果您点击提交按钮,表单将被提交。
Example 2:使用JavaScript
Considering the following example we are running script to change the context in the text area.
Address:当脚本被执行时,它会生成一个输出,其中包含一个填充有文本的地址字段的文本区域,以及一个点击更改按钮
If the user clicks on the button, the text in the textarea gets changed.
Example 3
的中文翻译为:示例3
让我们考虑另一个例子,我们正在使用textarea标签
HTML textarea Tag
When the script gets executed, the output window will pop up, providing the input type for textara along with a submit button.










