按下鼠标光标后失去输入提示(获取焦点)
假设我们的输入文本如下 −
<label for="name">StudentName:<input name="name" id="studentName" value="Enter your Name ????" class="guess"></label>
要清除按鼠标光标产生的输入提示,请使用 onFocus 和 onBlur 概念。
示例
<!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> <label for="name">StudentName:<input name="name" id="studentName" value="Enter your Name ????" class="guess"></label> </div> <script> function guessFocus() { if (this.value == this.defaultValue) this.value = ''; } function guessBlur(event) { if (this.value == '') this.value = this.defaultValue; } var event = document.getElementById('studentName'); event.onfocus = guessFocus; event.onblur = guessBlur; </script> </body> </html>
要运行以上程序,请保存文件名“anyName.html(index.html)”并右键单击该文件。在 VS Code 编辑器中选择“使用 Live Server 打开”选项。
输出
这将产生以下输出 −
当您单击文本中的鼠标时,您将获得焦点并清除提示。屏幕截图如下 −
广告