本帖最后由 qimingxue 于 2014-1-9 22:37 编辑
毕老师的html语言自学视频,小白跟着一起做, <input type="submit"/><input type="reset"value="Reset"/>写这句话的时候,在网页里面怎么实验也不能提交表单和重置信息,请大家指教
<!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=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form>
用户名:<input type="text"/><br/>
密码:<input type="password"/><br/>
性别:<input type="radio" name = "sex"/>男<input type="radio" name = "sex"/>女<br/>
技术::<input type="checkbox" />java<input type="checkbox" />html<input type="checkbox" />jsp</form><br/>
上传文件:<input type="file" /><br/>
按钮:<input type="button" value="按钮1" />
<input type="submit"/><input type="reset"value="Reset"/>
</form>
</body>
</html> |