选择css中的所有文本框

发布于 2024-11-03 19:57:24 字数 30 浏览 1 评论 0原文

CSS 有没有办法选择所有文本类型的输入元素?

Is there a way in CSS to select all input elements of type text?

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

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

发布评论

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

评论(2

单身狗的梦 2024-11-10 19:57:24
input[type=text]
{
  //css rules
}

这需要 CSS 2.1 并且不起作用
在一些较旧的浏览器(如 IE6)中

input[type=text]
{
  //css rules
}

This requires CSS 2.1 and won't work
in some older browsers (like IE6)

御弟哥哥 2024-11-10 19:57:24

除了提到的以外

<前><代码>输入[类型=文本]
{
//CSS规则
}

不,我不这么认为,除非您使用同一类手动标记它们并使用该类选择它们。

或者你可以尝试 JQuery,比如:

val text-inputs = $('input[type="text"]');

应该可以完成这项工作;)

Other than what was mentioned

input[type=text]
{
  //css rules
}

No I don't think so, unless you mark them manually with the same class and select them with the class.

Or you could try JQuery, something like :

val text-inputs = $('input[type="text"]');

should do the job ;)

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