代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
JS
】
文本框输入值文字消失
作者:
沉淀岁月
/ 发布于
2013/9/13
/
895
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>登录提示框</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $("#TxtUserName").focus(function () { $(this).attr({ style: "border-color:#FFA91A;" }); if ($(this).val() == "用户名") $(this).attr("value", ""); $(this).attr({ style: "color:#653C31;" }); }); $("#TxtUserName").blur(function () { $(this).attr({ style: "border-color:#c1c1c1;" }); if ($(this).val() == "") { $(this).attr("value", "用户名"); } else { $(this).attr({ style: "color:#653C31;" }); } }); $("#TxtPassword").blur(function () { if ($(this).val() == "") { $(this).attr({ style: "display:none" }); $("#userpwd_a").attr({ style: "display:" }); $("#userpwd_a").attr("value", "密码"); } else { $(this).attr({ style: "border-color:#c1c1c1;color:#653C31;" }); } }); $("#userpwd_a").focus(function () { if ($("#TxtPassword").val() == "") { $(this).attr({ style: "display:none" }); $("#TxtPassword").attr({ style: "border-color:#FFA91A;display:" }); $("#TxtPassword").val(""); $("#TxtPassword").focus(); } else { $(this).attr({ style: "display:none" }); $("#TxtPassword").attr({ style: "border-color:#FFA91A;display:" }); $("#TxtPassword").focus(); } }); $("#TxtPassword").focus(function () { $(this).attr({ style: "border-color:#FFA91A;color:#653C31;" }); $(this).attr("value", ""); }); }); </script> </head> <body> <div class="outbox"> <ul class="login"> <li style="position:relative;"> <input class="username" type="text" value="用户名" maxlength="24" id="TxtUserName"/> </li> <li> <input type="text" id="userpwd_a" class="userpwd" value="密码" maxlength="24" /> <input class="userpwd" type="password" value="" maxlength="24" id="TxtPassword" style="display:none"/> </li> </ul> </div> </body> </html>
试试其它关键字
文字消失
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
沉淀岁月
贡献的其它代码
(
39
)
.
CSS置顶页脚
.
CSS跨浏览器透明度
.
timer定时器的用法演示
.
PHP实现网站保存快捷桌面方式
.
定位函数所在模块
.
提示信息的自动隐藏
.
提交表单后禁用提交按钮
.
文本框输入值文字消失
.
批量剪切图片
.
批量生成ETL Automation APP下Perl脚本执行目录
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3