使用 JavaScript 在文本框中按下鼠标光标后丢失输入提示(获取焦点)

javascriptweb developmentobject oriented programming

假设以下是我们的输入文本 −

<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.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/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 打开"。

输出

将产生以下输出 −

当您在文本内单击鼠标时,您将获得焦点并且提示将丢失。屏幕截图如下 −


相关文章