code
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
计算机代码片段(computer code)
语法
<code 属性="属性值">~标签内容~</code>
<code 属性="属性值">~标签内容~</code>
属性
属性 | 属性值 | 说明 |
---|---|---|
① 通用属性:id、class、title、style、dir、lang、xml:lang |
nbsp;
示范
<code>代码块</code>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素code</title>
</head>
<body>
<p>
...
<script type="text/javascript">
var str = "This is a string.";
pos = str.indexOf("is");
alert(pos);
</script>
...
<code>var str = "This is a string.";
pos = str.indexOf("is");
alert(pos);
</code></p>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素code</title>
</head>
<body>
<p>
...
<script type="text/javascript">
var str = "This is a string.";
pos = str.indexOf("is");
alert(pos);
</script>
...
<code>var str = "This is a string.";
pos = str.indexOf("is");
alert(pos);
</code></p>
</body>
</html>