有没有办法用 CSS 选择多种输入字段类型?

发布于 2024-12-05 11:54:00 字数 144 浏览 1 评论 0原文

我有一个文本和一个密码输入字段,我试图以这种方式选择:

input[type=text][type=password]

但是这不起作用。我会避免使用 jQuery,因此任何帮助将不胜感激(不使用自定义类)。

I have a text and a password input field that I'm trying to select in this fashion:

input[type=text][type=password]

however this does not work. I would refrain from using jQuery, so any help would be appreciated (without using custom classes).

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

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

发布评论

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

评论(1

鹊巢 2024-12-12 11:54:00

您需要单独指定属性,必要时重复类型并使用逗号:

input[type=text], input[type=password]

您给定的选择器正在尝试将 inputtype 相匹配,该 type 都是 < code>text 和 password,但单个元素的同一属性不能有不同的值,因此会失败。

You need to specify the attributes separately, repeating the types if necessary and using comma(s):

input[type=text], input[type=password]

Your given selector is trying to match an input with a type that is both text and password, but a single element can't have different values for the same attribute so it fails.

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