如何为输入框内的内容编写正确的选择器?

发布于 2024-11-02 23:49:09 字数 250 浏览 7 评论 0原文

我有一种输入框形式,我需要编写一个好的选择器。我只需要将属性分配给输入框中的内容。表单看起来像这样:

<label></label>
<input type="text" disabled="disabled" name="xxx" size="100" value="abcd" class="yyy" />

但是,我的页面上有更多此类的元素。

最好的方法是什么?

I have a form of inputbox and i need to write a good selector. I need to assign attributes only to what is inside inputbox. form looks like this:

<label></label>
<input type="text" disabled="disabled" name="xxx" size="100" value="abcd" class="yyy" />

however, i have more elements of this class on my page.

what is the best way to go?

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

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

发布评论

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

评论(2

千年*琉璃梦 2024-11-09 23:49:09

当您添加了类“yyy”后,您可以继续执行以下操作:

<style type="text/css">
.yyy {
  font-size: 14px;
  font-family: Arial;
  color: #FF0000;
}
</style>

您当然可以粘贴上面的 HTML 代码并将其植入 HTML 文档中,但最佳实践是使 HTML 和 CSS 远离每个其他。

因此,请将此代码添加到您的 head 标签中:

<link href="some/style.css" type="text/css" rel="stylesheet" />

以及 style.css 内部:

.yyy {
 font-size: 14px;
 font-family: Arial;
 color: #FF0000;
}

As you've added a class "yyy", you can just go ahead and do the following:

<style type="text/css">
.yyy {
  font-size: 14px;
  font-family: Arial;
  color: #FF0000;
}
</style>

You can of course paste that HTML code above and plant it in your HTML document, but it's best practice to keep HTML and CSS away from each other.

So add this code in your head tag:

<link href="some/style.css" type="text/css" rel="stylesheet" />

And inside of style.css:

.yyy {
 font-size: 14px;
 font-family: Arial;
 color: #FF0000;
}
心碎的声音 2024-11-09 23:49:09

您可以使用 input.yyy {},它适用于所有浏览器,但如果页面上有多个具有 yyy 类的输入元素,它将选择所有这些元素。

另一种选择是 input[name=xxx],使用新的 CSS3 选择器,但这在旧版浏览器中不起作用,因此这取决于该样式在任何地方都适用的重要性。

You could use either input.yyy {}, which will work on all browsers but if you have more than one input element on the page with a class of yyy, it will select all of them.

An alternative is input[name=xxx], using a new CSS3 selector, but this won't work in older browsers, so it depends how important it is that the style works everywhere.

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