运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h3>A demonstration of how to access a LEGEND element</h3> <fieldset> <legend id="myLegend">Personalia:</legend> Name: <input type="text"> </fieldset> <p>Click the button to get the text of the legend element.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myLegend").innerHTML; document.getElementById("demo").innerHTML = x; } </script> </body> </html>