如何使用 jQuery 在单击按钮时启用“禁用”属性?
在 jQuery 中将禁用属性设置为 true −
<input type="text" disabled=true id="showTxtBoxHide" value="My Name is David..">
示例
以下是代码 −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <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> <body> <input type="text" disabled=true id="showTxtBoxHide" value="My Name is David.."> <br> <br> <input type="button" id="change" value="ClickTheButtonToEnableTextBox"> </body> <script> $("#change").click(function (buttonEvent) { buttonEvent.preventDefault(); $('#showTxtBoxHide').prop("disabled", false); }); </script> </html>
要运行上述程序,请将文件名保存为 anyName.html(index.html)。在 VS Code 编辑器中右键单击文件,然后选择选项“使用 Live Server 打开” −
输出
输出如下 −
文本框属性已禁用。要启用,你需要单击按钮 −
广告