资料
表格
制度
合同
管理
职场
经营
创业
范文
总结
计划
作文
文章
美文
词句
教程
模板
图片
字体
图标
办公
人事
财务
生产
管理资源吧首页
>>>
教程
>>>
编程
>>>
JavaScript教程
>>>
关于搜索输入框
1.打开页面,输入框自动获得焦点
2.用户输入关键词,如果是第一次输入,则自动清空默认Value值
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"> <head> <title> Code:关于搜索输入框 </title> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <meta name="author" content="枫岩,http://www.cnlei.com"> <meta name="keywords" content="自动获得焦点,自动清空默认Value" /> <meta name="description" content="打开页面,输入框自动获得焦点;用户输入关键词,如果是第一次输入,则自动清空默认Value值" /> <img src="/_New/_cj/myeditor/sysimage/space.gif" class="ewebeditor__script" _ewebeditor_fake_tag="script" _ewebeditor_fake_value="%3Cscript%20language%3D%22javascript%22%3E%20%0D%0Afunction%20clearInp(o)%7B%20%0D%0A%20%20if%20(o.className%3D%3D%22firstInp%22)%7B%20%0D%0A%20%20%20o.className%3D%22doInp%22%3B%20%0D%0A%20%20%20o.value%3D%22%22%3B%20%0D%0A%20%20%7D%20%0D%0A%7D%20%0D%0A%3C%2Fscript%3E"> <style type="text/css" media="all"> .firstInp {color:#999;} .doInp {color:#f60;} </style> </head> <body onload="document.serchform.k.focus();"> <form name="serchform" method="get" action=""> <input name="k" size="35" class="firstInp" value="请输入关键字" maxlength="100" onkeydown="clearInp(this);" /> <input type="submit" value="搜索" /> </form> </body> </html>
[Ctrl+A 全选 注:
如需引入外部Js需刷新才能执行
]
教程首页
更多教程