js下在password表单内显示提示信息的解决办法
经典有人要这个代码,考虑到password中输入的内容会显示为*号,所以要想办法解决*的问题。当初想用setAttribute动态修改type属性达到效果,再ff下测试成功,但没想到setAttribute对type属性的修改在ie中无效。最终采用背景图片的方式解决了这个。即为password设定一个背景图片,图片文字为提示信息
如:<img src="http://zsrimg.ikafan.com/upload/20070819124037566.gif" />,
当鼠标放上时不显示背景图片。
代码如下:
*{
margin:0px;padding:0px;font-size:12px;
}
input{
width:150px;height:20px;line-height:20px;border:1px solid #ccc;
}
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';
}
}
姓名:
动态修改input的type属性(仅在ff下有效):
密码:
图片提示(在ff/ie下均有效):
密码:
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]