# link标签css的link必须加上rel="stylesheet" ?link的rel属性的不同用法| 值 | 描述 || --- | --- || alternate | 文档的替代版本(比如打印页、翻译或镜像)。 || stylesheet | 文档的外部样式表。 || start | 集合中的第一个文档。 || next | 集合中的下一个文档。 || prev | 集合中的上一个文档。 || contents | 文档的目录。 || index | 文档的索引。 || glossary | 在文档中使用的词汇的术语表(解释)。 || copyright | 包含版权信息的文档。 || chapter | 文档的章。 || section | 文档的节。 || subsection | 文档的小节。 || appendix | 文档的附录。 || help | 帮助文档。 || bookmark | 相关文档。 |# form表单提交## 数据发送- disabled:不发送 ?- display\_none:发送 ?- type\_hidden:发送 ?- readonly:发送 ?测试html:```
```结果: ?http://127.0.0.1/ ??display\_none=display_none ?&type\_hidden=type_hidden ?&readonly=readonly ?## 文件发送1. 设置form发送文件:```
HTML
原文地址:https://www.cnblogs.com/jffun-blog/p/10206537.html