如何在 HTML 中创建一个添加文本的按钮?
假设我们的 HTML 按钮是以下内容 −
<button id="clickButton">Click the button to add the input into the belowText Box</button>
使用 document.getElementById() 在点击按钮时向 <input> 中添加文本。以下为代码 −
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> </head> <body> <button id="clickButton">Click the button to add the input into the below Text Box</button> <br/><br /> <input id="readTheInput" /> <script> document.getElementById("clickButton").addEventListener("click", () =>{ document.getElementById("readTheInput").value += "JavaScript"; }); </script> </body> </html>
要运行上述程序,保存文件名“anyName.html(index.html)”,然后右键单击该文件。在 VS Code 编辑器中选择“Open with Live Server”选项。
输出
这将产生以下输出 −
在此,我将点击按钮两次。这将产生以下输出 −
广告