jQuery“非只读”选择器

发布于 2024-09-19 09:17:00 字数 147 浏览 5 评论 0原文

我正在寻找类似的东西......

$(':input:not(readonly)') // all inputs which are not readonly

但很难找到语法。

有什么指点吗?谢谢

I'm looking for something along the lines of...

$(':input:not(readonly)') // all inputs which are not readonly

but struggling to find the syntax.

Any pointers? thanks

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

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

发布评论

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

评论(5

疯到世界奔溃 2024-09-26 09:17:00

这应该有效:

$(":input:not([readonly])")

This should work:

$(":input:not([readonly])")
司马昭之心 2024-09-26 09:17:00
$('input:not([readonly])')

将涵盖 readonly、readonly="true" 和 readonly="readonly"

$('input:not([readonly])')

would cover readonly, readonly="true" and readonly="readonly"

挽你眉间 2024-09-26 09:17:00

我最近做了类似的事情:

$('#element').find(':input').not(':input[readonly]');

I recently did something similar like this:

$('#element').find(':input').not(':input[readonly]');
2024-09-26 09:17:00

我想您正在寻找类似以下内容:

$('input:not([readonly="readonly"])')

看看 jQuery 的各种 attribute-selectors

I suppose you are looking for something like the following:

$('input:not([readonly="readonly"])')

Have a look at jQuery's various attribute-selectors.

旧夏天 2024-09-26 09:17:00

我想使用上下文添加另一个适合我的答案 https://api.jquery.com/context /

$(this).context.readOnly == false / true

I would like to add another answer that works for me, using context https://api.jquery.com/context/

$(this).context.readOnly == false / true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文