gpt4 book ai didi

jquery - 使用 jQuery 更改输入字段的类型(文本 -> 密码)

转载 作者:技术小花猫 更新时间:2023-10-29 12:47:09 24 4
gpt4 key购买 nike

我正在尝试更改输入类型,特别是在点击输入后将 type="text"更改为 change="password"

我不知道为什么,但我无法将选项 type="password" 作为属性添加到输入中。

        $('input#id_reg_pass').removeAttr("type"); #this works, type="text" is removing
$('input#id_reg_pass').attr('type', 'password'); #problem, this not works
$(this).addClass('exampleText').val($(this).attr('title'));

没有人遇到过类似的问题吗?我会很高兴每一个提示...谢谢

最佳答案

如果您使用的是 jQuery 1.6,请使用 .prop相反:

$('input#id_reg_pass').removeAttr("type");
$('input#id_reg_pass').prop('type', 'password');
$(this).addClass('exampleText').val($(this).attr('title'));

演示:http://jsfiddle.net/z8Rj3/

关于jquery - 使用 jQuery 更改输入字段的类型(文本 -> 密码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6402484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com