为什么重置没有效果,代码如下,请各位大佬赐教。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type"content="text/html"charset="utf-8">
<title>请输入你的账号</title>
</head>
<body>
<from method="post" action="save.php">
<label for="usename">账号</label>
<input type="text"name="usename"value="5201314" />
<br>
<label for="pass">密码</label>
<input type="password"name="password"value="" />
<br>
<input type="submit" value="提交"name="submit"/>
<input type="reset"value="重置"name="reset" />
</from>
</body>
</html>