fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> E-mail: <input type="email" id="myEmail" value="johndoe@example.com"> <p>点击按钮修改 email 字段的邮件地址</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myEmail").value = "steve@fmpq.com"; } </script> </body> </html>
运行结果