使用 MooTools 向 css 类添加属性
我想使用 MooTools 向 CSS 类添加属性。我知道我可以使用removeClass和addClass从不同元素添加和删除类,但我希望修改整个类本身的全局行为。
我唯一能想到的就是执行 $$('.classname').each 并使用 set('style','whatever')。有更好的办法吗?
I'd like to add an attribute to a CSS class using MooTools. I know that I can use removeClass and addClass to add and remove classes from different elements, but I'm looking to modify the global behavior of the entire class itself.
The only thing I can think of is doing $$('.classname').each and using set('style','whatever'). Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - 有一个更好的方法,您可以重新定义 CSS 样式本身,否则您必须在每次创建该类的新元素时不断应用更改,这不是非常高效和实用。
检查这个答案:Changing style of :hover selector in mootools 和我为它制作的jsfiddle: http://jsfiddle.net/dimitar/Z9RPP/
yes - there is a better way, you can redefine the CSS style itself, else you'd have to continuously apply changes every time you create a new element of that class and that's not very performant and practical.
check this answer: Changing style of :hover selector in mootools and the jsfiddle i made for it: http://jsfiddle.net/dimitar/Z9RPP/