陪你做好前端设计!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> </head> <body> <p>这边引用了 WWF's 站点的内容:</p> <blockquote id="myBlockquote" cite="http://www.worldwildlife.org/who/index.html"> For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. </blockquote> <p>点击下面的按钮,修改并返回以上引用cite属性的值。</p> <p id="demo"></p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ document.getElementById("myBlockquote").cite="http://www.cnn.com"; document.getElementById("demo").innerHTML="cite属性的值修改为 'www.cnn.com'."; } </script> </body> </html>
运行结果