关于form几个问题
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>表格</title>
</head>
<body>
<form method="post" action="save.php">
<label for="uesrname">用户名</label>
<input type="test" name="username" id="username" value="" />
<label for="password">密码</label>
<input type="password" name="pass" id="pass" value="" />
<input type="submit" value="确定" name="submit" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
有几个问题,麻烦大神解答一下
1:这是我用DW8敲出来的代码,但是周围出现了红色框框,请问哪里错了。
2:为何用户名和密码需要label for符号,而确定和重置不需要?
3:form method="post"和action:”save.php“这2个代码分别是什么意思
4:为何用户名和密码的value后面是空的”“