<html>
<body>
<p>这是一个文本。
<ins id="myIns" cite="why_inserted.htm">这是一个插入文本。</ins>
</p>
<p>点击按钮返回插入文本中cite属性值。</p>
<p id="demo"></p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction()
{
var x = document.getElementById("myIns").cite;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>