代码驿站移动版
频道导航
HTML/Xhtml
CSS
JavaScript
HTML5
PHP教程
ASP.NET
正则表达式
AJAX
ThinkPHP
Yii
MySQL
MariaDB
Oracle
MongoDB
Redis
DedeCMS
PHPCMS
帝国CMS
WordPress
Discuz
其它CMS
Zend Studio
Sublime
Notepad
Dreamweaver
Windows
Linux
Nginx
Apache
IIS
CentOS
Ubuntu
Debian
网站优化
工具资源
PHP源码
ASP.NET源码
其它源码
图标素材
按钮素材
字体素材
DedeCMS模板
帝国CMS模板
PHPCMS模板
WordPress模板
Discuz!模板
单页模板
开发软件下载
服务器软件下载
广告投放
联系我们
版权申明
软件编程
网页前端
移动开发
数据库
服务器
脚本语言
PHP代码
JAVA代码
Python代码
Android代码
当前位置:
主页
>
网页前端
>
JavaScript代码
>
js下在password表单内显示提示信息的解决办法
时间:2022-05-22 08:20:57 | 栏目:
JavaScript代码
| 点击:次
经典有人要这个代码,考虑到password中输入的内容会显示为*号,所以要想办法解决*的问题。当初想用setAttribute动态修改type属性达到效果,再ff下测试成功,但没想到setAttribute对type属性的修改在ie中无效。最终采用背景图片的方式解决了这个。即为password设定一个背景图片,图片文字为提示信息
如:<img src="/upload/20070819124037566.gif" />,
当鼠标放上时不显示背景图片。
代码如下:
<!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" xml:lang="en" lang="en"> <head> <title></title> <style type="text/css"> *{ margin:0px;padding:0px;font-size:12px; } input{ width:150px;height:20px;line-height:20px;border:1px solid #ccc; } </style> </head> <body> <script language="javascript"> function chgForm(id){ if(document.getElementById(id).value=="密码长度必须在3-18位之间") document.getElementById(id).value=""; document.getElementById(id).setAttribute("type","password"); } function chkForm(id){ if(document.getElementById(id).value.length==0){ document.getElementById(id).setAttribute("type","text"); document.getElementById(id).value="密码长度必须在3-18位之间"; } } function chkFormpic(id){ if(document.getElementById(id).value.length==0){ document.getElementById(id).style.background='url(/upload/20070819124037566.gif) no-repeat'; } } </script> 姓名:<input type="text" id="username" value="姓名长度最多16个字符" onfocus="this.select()" /> 动态修改input的type属性(仅在ff下有效): 密码:<input type="text" id="password" onmouseover="chgForm('password')" value="密码长度必须在3-18位之间" onmouseout="chkForm('password')" /> 图片提示(在ff/ie下均有效): 密码:<input type="password" id="p1" onmouseover="this.style.background=''" style='background:url(/upload/20070819124037566.gif) no-repeat' onmouseout="chkFormpic('p1')" /> </body> </html>
[Ctrl+A 全选 注:
引入外部Js需再刷新一下页面才能执行
]
您可能感兴趣的文章:
JavaScript常见事件处理程序实例总结
url传递的参数值中包含&时,url自动截断问题的解决方法
Javascript的匿名函数小结
Javascript别踩白块儿(钢琴块儿)小游戏实现代码
兼容浏览器的js事件绑定函数(详解)
相关文章
10-19
javascript上下左右定时滚动插件
11-27
Javascript实例教程(19) 使用HoTMetal(2)
11-23
Webpack中loader打包各种文件的方法实例
10-05
javascript判断图片是否加载完成的方法推荐
11-22
在javascript中执行任意html代码的方法示例解读
JQuery
VUE
AngularJS
MSSql
MySQL
MongoDB
Redis
Linux
Tomcat
Nginx
网站首页
广告投放
联系我们
版权申明
联系站长