jquery 改变input类型 input(type=“text”)鼠标当选中状态 input(type=“password”)

jquery 改变input类型 input(type=“text”)鼠标当选中状态 input(type=“password”),第1张

input的type属性是只读的,没办法动态修改(貌似火狐下可以,不确定。但是ie下一定不行)

所以没办法动态修改,只能动态生成或者显示type为password的输入框元素 

<input type="password" name="pass" id="pass" onfocus="if(thisvalue == ''){documentgetElementById('passlab')innerHTML = '';}" onblur="if(thisvalue == ''){documentgetElementById('passlab')innerHTML = '密码';}" />

<label style="定位到input输入框中" for="pass" id="passlab">密码</label>

这样就能模拟出这种效果了

页面控件啊。

input表示输入框,id和name是标识和名字,其他地方引用需要的,type是类型,password表示输入的是密码,显示出来就是一堆,class是样式,和css有关了,通俗点说:类似于QQ皮肤……

以上就是关于jquery 改变input类型 input(type=“text”)鼠标当选中状态 input(type=“password”)全部的内容,包括:jquery 改变input类型 input(type=“text”)鼠标当选中状态 input(type=“password”)、关于input type="password" 在ie7下的问题!、input class="box_outer input" id="hao_mail_passwd" name="hao_mail_passwd" type="password是什么等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10093985.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存