运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> Address:<br> <textarea id="myTextarea"> 342 Alvin Road Ducksburg</textarea> <p>Click the button to change the contents of the text area.</p> <button type="button" onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myTextarea").value = "Fifth Avenue, New York City"; } </script> </body> </html>