<html>
<body>
<p id="demo" style="font-variant:small-caps">这是段落。</p>
<button type="button" onclick="myFunction()">返回字体变体</button>
<script>
function myFunction() {
alert(document.getElementById("demo").style.fontVariant);
}
</script>
</body>
</html>