首页 > 语言 > JavaScript > 正文

javascript搜索框效果实现方法

2024-05-06 16:20:13
字体:
来源:转载
供稿:网友

这篇文章主要介绍了javascript搜索框效果实现方法,可实现显示默认提示文字的搜索框效果,非常简单实用,需要的朋友可以参考下

本文实例讲述了javascript搜索框效果实现方法。分享给大家供大家参考。具体实现方法如下:

 

 
  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. <script type="text/javascript"
  8. function iniEvent() { 
  9. var txtSearch = document.getElementById("txtSearch"); 
  10. txtSearch.onfocus = function () { 
  11. if (this.value == "请输入关键字" || this.value == "") { 
  12. this.value = ""
  13. this.style.color = "black"//修改文本框字体颜色 
  14. txtSearch.onblur = function () { 
  15. if (this.value == "请输入关键字" || this.value == "") { 
  16. this.value = "请输入关键字"
  17. this.style.color = "red"//修改文本框字体颜色 
  18. else { 
  19. this.style.color = "black"
  20. </script> 
  21. </head> 
  22. <body onload="iniEvent()"
  23. <!--文字离开如果文本框为空则显示红色的"请输入关键字"--> 
  24. <!--<label for="txtSearch">查找</label> 
  25. <input type="text" id="txtSearch" value="请输入关键字" 
  26. style="color:red" />--> 
  27. 查找<input type="text" id="txtSearch" value="请输入关键字" 
  28. style="color:red" /><br /><input type="text" /> 
  29. </body> 
  30. </html> 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选