?? mimetypesexample.htm
字號(hào):
<html>
<head>
<title>MIME Types Example</title>
</head>
<body>
<script type="text/javascript">
if (navigator.mimeTypes) {
document.writeln("<h3>Supported MIME Types (Mozilla only):</h3>");
document.writeln("<ul>");
for (var i=0; i < navigator.mimeTypes.length; i++) {
document.writeln("<li>" + navigator.mimeTypes[i].type + " ("
+ navigator.mimeTypes[i].description + ", "
+ navigator.mimeTypes[i].suffixes + ")</li>");
}
document.writeln("</ul>");
}
</script>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -