本文介绍了javascript是否禁止将输入类型从密码更改为密码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在输入元素上使用此代码:

I am using this code on the input element:

onmouseout="
$('#passwordhelp').text('');
$('#rpassword').attr('type', 'password')"

推荐答案

您无法使用jquery尝试更改属性type.您遇到了浏览器问题:

You can't change the property type with jquery in the way you are attempting to do it. You're bumping into a browser issue:

请参见输入字段的jQuery更改类型

这篇关于javascript是否禁止将输入类型从密码更改为密码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 14:30
查看更多