x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function displayResult() {
8
document.getElementById("q1").style.quotes = "'<' '>' '[start]' '[end]'";
9
}
10
</script>
11
</head>
12
<body>
13
14
<q id="q1">这是一个<q>引号元素</q> 在其他的引号元素内。</q>
15
<br>
16
<button type="button" onclick="displayResult()">修改引号标记</button>
17
<p><b>注意:</b> 这个例子在IE和Safari不工作。</p>
18
19
</body>
20
</html>