jQuery 清除输入[类型=密码]

发布于 2024-11-18 02:24:25 字数 131 浏览 3 评论 0原文

当 jquery 验证失败时,我试图清除所有密码类型的输入 - 我尝试了以下操作(不起作用):

$('input[type=password]').val('');

有什么想法吗?

I'm trying to clear all the inputs that are password type when jquery validation fails - I tried the following (which doesn't work) :

$('input[type=password]').val('');

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

风渺 2024-11-25 02:24:25

尝试用

$("input[type='password']").val('');

Try with

$("input[type='password']").val('');
毁我热情 2024-11-25 02:24:25

尝试使用 :password 选择器,因为它会使您的代码更短:

$(':password').val('');

也是您的初始代码应该有效。你的问题出在别的地方。不幸的是,由于您没有说明在什么上下文中以及如何调用它,或者因为您没有解释它不起作用意味着我无法进一步帮助您。

Try using the :password selector as it will make your code shorter:

$(':password').val('');

Also your initial code should work. Your problem is somewhere else. Unfortunately as you haven't stated in what context and how this is called or as you haven't explained what it doesn't work mean I cannot help you further.

鲸落 2024-11-25 02:24:25
$('input[type^="password"]').each(function(){
    // this is an example
});
$('input[type^="password"]').each(function(){
    // this is an example
});
花开雨落又逢春i 2024-11-25 02:24:25

简短回答:

要使用 jquery 选择所有密码字段,您可以使用:

$(':password').val('');

但为了在现代浏览器中获得更好的性能,请使用

$("input[type='password']").val('');

详细答案

:密码选择器 (来自 jQuery 文档)

描述:选择密码类型的所有元素。

添加版本:1.0

jQuery( ":password" )

$( ":password" ) 相当于 $( "[type=password]" )。

与其他伪类选择器(以“:”开头的选择器)一样,建议在其前面添加标签名称或其他选择器;否则,隐含通用选择器(“*”)。

换句话说,裸露的 $( ":password" ) 相当于 $( "*:password" ),因此应该使用 $( "input:password" ) 来代替。

附加说明:

因为 :password 是 jQuery 扩展,而不是 CSS 规范的一部分,所以使用 :password 的查询无法利用本机 DOM querySelectorAll() 方法提供的性能提升。为了在现代浏览器中获得更好的性能,请改用 [type="password"]。

short answer :

to select all password fields using jquery you can use :

$(':password').val('');

but for better performance in modern browsers use

$("input[type='password']").val('');

Detailed Answer

:password Selector ( from jQuery document )

Description: Selects all elements of type password.

version added: 1.0

jQuery( ":password" )

$( ":password" ) is equivalent to $( "[type=password]" ).

As with other pseudo-class selectors (those that begin with a ":") it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector ( "*" ) is implied.

In other words, the bare $( ":password" ) is equivalent to $( "*:password" ), so $( "input:password" ) should be used instead.

Additional Notes:

Because :password is a jQuery extension and not part of the CSS specification, queries using :password cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. For better performance in modern browsers, use [type="password"] instead.

蓝天白云 2024-11-25 02:24:25

我想你可以尝试这个:

$("#id of a input field").val('');

I think you can try this:

$("#id of a input field").val('');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文