运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <link id="myLink" rel="icon" href="demo_icon.gif" type="image/gif" sizes="16x16"> </head> <body> <h2>Hello world!</h2> <p>Click the "Try it" button to return the value of the sizes attribute of the link element.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myLink").sizes; document.getElementById("demo").innerHTML = x; } </script> </body> </html>