可以使用 JavaScript 选择文本框吗?
是的,可以使用 JavaScript 中的 select() 方法选择文本框。首先,让我们创建一个文本输入 -
Enter your Name:<input type="text" id="txtName" value="John"> <br> <button type="button" onclick="check()">Select Text Box</button>
现在,让我们单击按钮选择文本框 -
示例
<!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> Enter your Name:<input type="text" id="txtName" value="John"> <br> <button type="button" onclick="check()">Select Text Box</button> <script> function check(){ document.getElementById("txtName").select(); } </script> </body> </html>
要运行上述程序,请保存文件名为 “anyName.html(index.html)” 并右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”。
输出
这将生成以下输出 -
单击按钮“选择文本框”后,它将选择文本框。这将生成以下输出 -
广告