1、input系统列标签
example:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>页面一</title>
</head>
<body>
<input/>
<br/>
<input type=‘text‘/>
<br/>
<input type=‘password‘/>
<br/>
<input type=‘checkbox‘ name=‘ge‘/>
<input type=‘checkbox‘ name=‘ge‘/>
<br/>
男:<input type=‘radio‘ name=‘gen‘/>
女:<input type=‘radio‘ name=‘gen‘/>
中性:<input type=‘radio‘ name=‘gen‘/>
<br/>
<input type=‘button‘ value=‘提交‘/>
<input type=‘submit‘ value=‘提交‘/>
<br/>
<input type=‘file‘ />
</body>
</html>
结果:
时间: 2024-09-30 15:48:14