标题: 为什么文本框无法重置?
作者: 天星CEO @Ta
时间: 2016-09-23发布,2016-09-23修改
<!DOCTYPE>
<html>
<head>
<title>请填写注册信息</title>
</head>
<body>
<from name="from2" action = "from2.php" method = "post">
<table border="1" align= "center">
<thead>
<tr>
<th colspan="2">请填写注册信息</th>
</tr>
</thead>
<tr>
<td>个人信息</td>
<td>
<textarea name = "information" wrap = "virtual" rows = "6">
</textarea>
</td>
</tr>
<tr>
<td align= "center" colspan="2">
<input type = "submit" value = "提交" />
<input type = "reset" value = "重置" />
</td>
</tr>
</table>
</from>
</body>
</html>
[隐藏样式|查看源码]