如何在 YUI 中实现多个选择器

发布于 2024-12-19 22:46:18 字数 197 浏览 1 评论 0原文

我如何在 yui (yui 2) 中做多个选择器,就像在 jquery 中一样:

$('h1, h2, el1, el2, .content, .title').css('color', 'red');

如何在 yui 中编写这个选择器(无需对每个元素分别执行 YAHOO.util.Dom.addClass )

How can i do multiples selectors in yui (yui 2) like in jquery :

$('h1, h2, el1, el2, .content, .title').css('color', 'red');

How can this one be written in yui (without doing YAHOO.util.Dom.addClass on each element seperately)

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

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

发布评论

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

评论(2

久夏青 2024-12-26 22:46:18

YUI 的一些 DOM 方法接受要操作的元素数组, addStlye() 方法就是其中之一,因此您应该能够执行以下操作:

YAHOO.util.Dom.setStyle(['el1', 'el2'], 'color', 'red');

尽管认为它只适用于 ids,所以第一个元素应该有一个el1 的 id 等...

编辑:

您还可以使用 YAHOO.util.Selector 模块来查询 DOM 并返回要传递给 setStyle() 的元素数组>,例如:

var els = YAHOO.util.Selector.query('h1, h2, h3, .some-element');

YAHOO.util.Dom.setStyle(els, 'color', 'red');

Some of the DOM methods of YUI accept an array of elements to act on, and the addStlye() method is one of them, so you should be able to do:

YAHOO.util.Dom.setStyle(['el1', 'el2'], 'color', 'red');

Think it only works with ids though, so the first element should have an id of el1, etc...

EDIT:

You can also use the YAHOO.util.Selector module to query the DOM and return the array of elements to pass to setStyle(), e.g:

var els = YAHOO.util.Selector.query('h1, h2, h3, .some-element');

YAHOO.util.Dom.setStyle(els, 'color', 'red');
紧拥背影 2024-12-26 22:46:18

或者在 YUI 3 中:

Y.all('h1, h2, h3, .content, .title').setStyle('color', 'red');

Or in YUI 3:

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