html中table表单如何应用?
html中table表单如何应用?我们这边以条款案例来说明
操作方法
- 01
如图所示先写外边框的内容。<table></table>中align="center" border="1" cellspacing="0" cellpadding="0" 要写清楚。border="1"表示有外边框,0的话表示无外边框。
- 02
对table表单进行位置的调整和align的位置。
- 03
下图就是表单的上部分。这时候要用到colspan对表格进行合并。代码如下图所示的样子。
- 04
再按照下图的代码进行书写。
- 05
下图的表单就是书写后的样子。可以根据我全部书写的代码进行复制。就可以看到效果了。 <table cellspacing="0" align="center" bordercolor="#E4E4E4" cellpadding="0" border="1" height="800" width="800"> <tr > <td valign="top"> <table align="center" border="0" cellspacing="0" cellpadding="0" width="750"> <tr height="40"> <td width="150" align="right"><strong>个人资料:</strong></td> <td>*为必填项</td> </tr> <tr height="40"> <td colspan="2"><hr></td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="60"> <td width="70">验证码:</td> <td width="150"><input type="text"></td> <td width="50"><img src=""></td> <td align="left">点击更换</td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70">手机号码:</td> <td width="160"><input type="text"></td> <td colspan="2">最多11个字符,例如13088888888</td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70">手机号码:</td> <td width="160"><input type="text"></td> <td colspan="2">最多11个字符,例如13088888888</td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70">性别:</td> <td colspan="3"><input type="radio" name="uSex">男<input type="radio" name="uSex">女</td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70">所在地:</td> <td colspan="3"> <select style="width:200px;"> <option>请选择省份</option> </select> <select style="width:150px;"> <option>请选择市</option> </select> </td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70">服务条款:</td> <td colspan="3"> <textarea cols="40" rows="8">文明施工、现场状况、劳务分包和专业分包、施工班组及职工、材料供应商及租赁商、项目管理人员、工程款资金流向、政府部门及上级领导检查等进行总监但不参与组织和管理,甲方委派人员的薪酬由乙方承担,薪酬标准为5000元/月。甲方委派人员的薪酬由甲方按月从乙方工程款中扣取。双方合作工程项目的其余配置(包括人力资源和其他一切资源)由乙方按需要自主配置,但必须满足工程和业主的需要,所需一切费用由乙方承担。 三、经营和管理模式 1、双方合作工程项目受甲方统一管理,可以采取灵活的经营策略和管理模式,但总体管理方式不能与甲方的管理原则相违背,同时必须遵守甲方的各项规章制度。 2、乙方作为独立核算实体,自主经营,并对合作工程项目的生产经营活动和经营成果承担责任;甲方仅对双方合作工程项目的各种合同、财务、质量、安全、工期、进度、文明施工、现场状况、劳务分包和专业分包、施工班组及职工、材料供应商及租赁商、项目管理人员、工程款资金流向、政府部门及上级领导检查等进行总监但不参与组织和管理。乙方在经营中必须遵守甲方的整体经营方针和政策,不得损坏甲方的市场形象。 乙方应按国家税收政策及财务法规的规定缴纳本工程税金。双方约定在现有政策下,本工程缴纳的管理费及税金为结算总造价 6.5%。若国家税收政策或财务法规发生修改或变化时,甲方提前通知乙方,乙方需无条件支付国家规定税收增加部分。甲方按实际发生额代收代缴政府部门要求交纳的各种保证金、基金和规费及在本项目合同所发生的技术服务费、印花税等,费用均由乙方自行负担。同</textarea> </td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70"></td> <td colspan="3" style="color:#8E0002">甲方提前通知乙方,乙方需无条件支付国家规定税收增加 </td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35"> <td width="70"></td> <td colspan="3" style="color:#8E0002">甲方提前通知乙方,乙方需无条件支付国家规定税收增加 </td> </tr> </table> <table align="center" border="0" cellspacing="0" cellpadding="0" width="650" > <tr height="35" align="center"> <td colspan="4" style="color:#8E0002"><input type="submit" value="我接受条款"> </td> </tr> </table> </td> </tr> </table> 把这些放在body中反复看一下。就懂得表单代码的书写了。