<html>
<body>
<p id="demo" style="letter-spacing:10px;">这是一个示例段落。</p>
<button type="button" onclick="myFunction()">返回字母 p 的间距</button>
<script>
function myFunction() {
alert(document.getElementById("demo").style.letterSpacing);
}
</script>
</body>
</html>