1、HTML基本元素、标签规范
闭合、自闭合、小写
参考:http://www.runoob.com/html/html-elements.html
2、HTML属性
小写,双引号(特殊情况可用单引号),顺序为:
type(input标签) > name(input标签) > id > value(input标签) ... > class > style > onclick,onfoucus...
3、表单
使用 label 标签包装 单选、多选、下拉等元素,扩大用户点击范围到文字
form 在需要从服务器读取原来的数据的要加 autocomplete="off",以免火狐浏览器的自动记录替换代码设定的默认值。
时间: 2024-11-07 20:16:00