fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <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>
运行结果