<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()
{
document.getElementById("myIns").cite="http://www.example.com/whyweinsertedsometext.htm";
document.getElementById("demo").innerHTML=" cite 属性被修改为 'www.example.com/whyweinsertedsometext.htm'.";
}
</script>
</body>
</html>