<!DOCTYPE html>
<html>
<head>
<title>W3.CSS(w3cschool.cn)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" href="https://7npmedia.w3cschool.cn/w3.css">
</head>
<h2>突出显示 JavaScript 代码</h2>
<p>W3Cschool 提供了一个 JavaScript 库,用于显示彩色代码。</p>
<div class="w3-panel w3-card w3-light-grey">
<h4>JavaScript 示例</h4>
<div class="w3-code jsHigh notranslate">
水果[0] = "香蕉";<br>
水果[1] = "苹果";<br>
水果[2] = "芒果";<br>
水果[3] = "李子";<br>
</div>
</div>
<script src="https://www.w3schools.com/lib/w3codecolor.js"></script>
<script>
w3CodeColor();
</script>
</body>
</html>