当前位置:Gxlcms > JavaScript > js实现当前输入框高亮显示的方法

js实现当前输入框高亮显示的方法

时间:2021-07-01 10:21:17 帮助过:30人阅读

本文实例讲述了js实现当前输入框高亮显示的方法。分享给大家供大家参考。具体如下:

这里演示利用JavaScript技术实现的当前输入框高亮显示代码,在很多的网页表单中,当用户鼠标点击文本框的时候,该文本框就会显示高亮状态,提醒用户输入,本例通过JAVAScript代码实现了这样一种效果。

运行效果如下图所示:

在线演示地址如下:

http://demo.jb51.net/js/2015/js-table-input-color-show-codes/

具体代码如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>当前输入框高亮显示</title>
  7. <style>
  8. body,form,h2,p,input{margin:0;padding:0;}
  9. body{color:#4f4f4f;font:14px/1.5 \5fae\8f6f\96c5\9ed1;}
  10. form{width:400px;background:#fef4eb;border:2px solid #f60;padding-bottom:10px;overflow:hidden;zoom:1;margin:10px auto;}
  11. form h2{color:#fe791e;font-size:16px;background:#ffebd7;border-bottom:2px solid #f60;padding:5px 10px;}
  12. form p{float:left;clear:both;width:100%;height:31px;margin-top:10px;line-height:31px;}
  13. form label,form input{float:left;}
  14. form label{width:100px;height:31px;text-align:right;}
  15. form input{border:0;font-family:\5fae\8f6f\96c5\9ed1;background:url(input.png) no-repeat;}
  16. form .f-text,form .f-text-high{width:203px;height:31px;padding-left:5px;line-height:31px;}
  17. form .f-text-high{background-position:0 -31px;}
  18. form .f-btn{color:#fff;width:104px;height:31px;cursor:pointer;font-size:16px;background:#f60;line-height:31px;border-radius:5px;}
  19. </style>
  20. <script type="text/javascript">
  21. window.onload = function ()
  22. {
  23. var aInput = document.getElementsByTagName("input");
  24. var i = 0;
  25. for (i = 0; i < aInput.length - 1; i++)
  26. {
  27. aInput[i].onfocus = function ()
  28. {
  29. this.className = "f-text-high"
  30. };
  31. aInput[i].onblur = function ()
  32. {
  33. this.className = "f-text"
  34. }
  35. }
  36. };
  37. </script>
  38. </head>
  39. <body>
  40. <form>
  41. <h2>用户登录</h2>
  42. <p><label>用户名:</label><input class="f-text" type="text" /></p>
  43. <p><label>密码:</label><input class="f-text" type="password" /></p>
  44. <p><label></label><input class="f-btn" type="button" value="登 录" /></p>
  45. </form>
  46. </body>
  47. </html>

希望本文所述对大家的javascript程序设计有所帮助。

人气教程排行