<!-- using the disabled attribute prevents the end user from entering text into the input box --><input type="text" disabled><!-- text input is allowed, as it doesn't contain the disabled attribute --><input type="text">
<a href='http://www.example.com' title='Isn't this fun?'>A link to my example.</a>
相反,您需要执行以下操作:
<a href='http://www.example.com' title='Isn't this fun?'>A link to my example.</a> HTML文档的剖析
单独的HTML元素本身并不是很有用。接下来,让我们检查各个元素如何组合以形成整个HTML页面:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>My test page</title> </head> <body> <p>This is my page</p> </body></html>
这里我们有:
<!DOCTYPE html>:文档类型。在HTML刚成立时(1991年至1992年),doctype旨在充当指向一组规则的链接,HTML页面必须遵循这些规则才能被认为是好的HTML。Doctypes过去看起来像这样:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">最近,doctype是一个历史工件,需要包含它才能使其他一切正常工作。 <!DOCTYPE html>是算作有效文档类型的最短字符串。这就是您所需要知道的!