form action= /path/to/script id= thisform method= post p label for= name Name: /label br / input type= text id= name name= name / /p p label for= email Email: /label br / input type= text id= email name= email / /p p input type= submit value= submit / /p /form
我喜欢方法C的几个地方.首先,对于类似本示例的单纯表单来说,我发现把每个说明与表单元素放在单独的段落比较方便,不加上样式显示时,段落之间的预设距离应该足以让你轻松阅读内容.稍后我们还能以CSS为表单内包含的 p 标签设定间隔. 我们甚至更进一步,为表单设定了唯一的id= thisform .因此,刚才我提到的精确间隔大致上可以写成这样:
form action= /path/to/script id= thisform method= post p label for= name Name: /label br / input type= text id= name name= name / /p p label for= email Email: /label br / input type= text id= email name= email / /p p input type= submit value= submit / /p /form