编辑下面的代码:【加编码】
<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>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂