我使用tinymce 3.x插件,发现此插件在iframe的头部创建了带有简单doctype的iframe(请参阅问题标题)。
什么意思只是简单的doctype(参见问题标题)在html页面的头部?
答案 0 :(得分:0)
这意味着该文档遵循HTML5标准。
您可以从这里开始:http://www.w3schools.com/tags/tag_DOCTYPE.asp
对于您的其他问题,这就是它的外观:
<!DOCTYPE>
<html>
// insert code here
</html>
答案 1 :(得分:0)
<!DOCTYPE html>
是明确的Document Type Declaration
从链接页面:
The DOCTYPE Declaration (DTD or Document Type Declaration) does a couple of things:
1. When performing HTML validation testing on a web page it tells the HTML (HyperText Markup Language) validator which version of (X)HTML
standard the web page coding is supposed to comply with. When you
validate your web page the HTML validator checks the coding against
the applicable standard then reports which portions of the coding do
not pass HTML validation (are not compliant).
2. It tells the browser how to render the page in standards compliant
mode.
#2是使用它的一个非常重要的原因。
<!DOCTYPE html>
,具体来说,是correct declaration for HTML5,应该从这里到不久的将来使用。您仍然可以使用旧字符串或过时的允许字符串,但以前编写的格式是HTML5中所需的全部格式。另外请注意,此DTD会导致所有现代浏览器dead link到switch to their standards (compliance) mode,即使它们不支持HTML5。
以下是更多信息:
Activating Browser Modes with Doctype
World Wide Web Consortium (他们制定网络标准)