如何在sencha中为具有指定类名的所有元素设置样式
我是第一次使用 Sencha。以前,我一直使用jquery。以下 jquery 命令的 Sencha 等效项是什么?
$('.card').css('background-image', 'url(bg.jpg)');
换句话说,我想找到类名为 card
的所有元素,然后我想向它们添加 background-image:url(bg.jpg)
。
I'm using Sencha for the first time. Previously, I've been using jquery. What is the Sencha equivalent for the following jquery command?
$('.card').css('background-image', 'url(bg.jpg)');
In other words, I want to find all elements with the class name card
, then I want to add a background-image:url(bg.jpg)
to them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以做到:
This should do it: