批改状态:合格
老师批语:
<td rowspan="n">单元格内容</td>
<td colspan="n">单元格内容</td>
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title></head><body><table border="1"><caption>陈欣怡的课程表</caption><thead><tr><th colspan="2"></th><th>星期一</th><th>星期二</th><th>星期三</th><th>星期四</th><th>星期五</th></tr></thead><tbody><tr><td rowspan="4">上午</td><td>1</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td>2</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td>3</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td>4</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td colspan="7">下午</td></tr><tr><td rowspan="4">上午</td><td>5</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td>6</td><td>语文</td><td>数学</td><td>英语</td><td>化学</td><td>物理</td></tr><tr><td>7</td><td>活动</td><td colspan="4">自由组织</td></tr></tbody></table></body></html>
<form action="" method="POST" enctype="multipart/form-data"><input type="text" id="" name=""></form>
<form action="" method="POST" enctype="multipart/form-data"><input type="text" id="" name="" form="formid"></form>
input 用于收集用户信息,根据type的不同可以分为以下几种形式
<input type="text" name="" id="">
<input type="text" name="" id="">
<input type="password" name="" id="">
<input type="radio" name="gender" id=""><input type="radio" name="gender" id="">
<input type="radio" name="gender" id="" checked><input type="radio" name="gender" id="">
<input type="checkbox" name="" id="" checked><input type="checkbox" name="" id="" checked><input type="checkbox" name="" id="">
<input type="file" name="file" id="file" />
<select name="" id=""><option value="" selected></option><option value="" label=""></option></select>
<textarea name="" id="" cols="30" rows="10"></textarea>
<button type=""></button>
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style></style></head><body><form action="" method="POST" enctype="multipart/form-data"><label for="username">用户名:</label><input type="text" name="username" id="username" /><label for="email">邮箱:</label><input type="email" name="email" id="email" /><label for="password">密码:</label><input type="password" name="passrword" id="password" /><label for="gender">性别:</label><input type="radio" name="gender" id="male" checked /><label for="male">男</label> <input type="radio" name="gender" id="female" /><label for="female">女</label><input type="hidden" /><label for="edu">学历:</label><select name="edu" id="edu"><option value="1">初中</option><option value="1" selected>高中</option><option value="1">大专</option><option value="1">本科</option></select><label for="#">兴趣爱好</label><textarea name="" id="" cols="30" rows="10"></textarea><label for="file">头像</label><input type="file" name="file" id="file" /><button type="submit">提交</button></form></body></html>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号