<html>
<body>
<p><del id="myDel" cite="why_deleted.htm">这个文本已经本删除</del></p>
<p>点击按钮返回删除文本的cite属性值。</p>
<p id="demo"></p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction()
{
var x = document.getElementById("myDel").cite;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>