这个标记用来制作多行的文字域,可以在其中输入更多的文本。
-
基本语法
<textarea name="name" rows=value cols=value value="value"> </textarea>
这些属性的含义如下表所示
在页面中插入文字域。
01 <!-- ------------------------------ -->
02 <!-- 文件范例:11-17.htm -->
03 <!-- 文件说明:插入文字域 -->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>插入文字域</title>
08 </head>
09 <body>
10 <h1>用户调查</h1>
11 <Form action=mailto:tslxg@hotmail.com method=get name=invest>
12 请留言:<br>
13 <textarea name="comment" rows=5 cols=40>
14 </textarea><br>
15 <input type="submit" name="submit" value="提交表单">
16 </Form>
17 </body>
18 </html> 文件说明
第13行定义了文字域的行数为5,列数为40个字符。