fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> 名称: <input type="text" id="myText" value="Mickey"> <p>点击按钮修改文本域的值。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myText").value = "Johnny Bravo"; } </script> </body> </html>
运行结果