运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <p>Here is a quote from WWF's website:</p> <p>WWF's goal is to: <q id="myQuote" cite="http://www.wwf.org"> Build a future where people live in harmony with nature.</q> We hope they succeed. </p> <p>Click the button below to change the value of the cite attribute of the quotation above.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myQuote").cite = "http://www.cnn.com"; document.getElementById("demo").innerHTML = "The value of the cite attribute was changed to 'www.cnn.com'."; } </script> </body> </html>