运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The onclick Event</h2> <p>Field1: <input type="text" id="field1" value="Hello World!"></p> <p>Field2: <input type="text" id="field2"></p> <p>Clicking "Copy" triggers a function that copies the text value from Field1 to Field2.</p> <button onclick="myFunction()">Copy</button> <script> function myFunction() { document.getElementById("field2").value = document.getElementById("field1").value; } </script> </body> </html>