如何在sencha中为具有指定类名的所有元素设置样式

发布于 2025-01-04 12:44:32 字数 241 浏览 0 评论 0原文

我是第一次使用 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 技术交流群。

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

发布评论

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

评论(1

半夏半凉 2025-01-11 12:44:32

这应该可以做到:

Ext.select('.card').setStyle('background-image', 'url(bg.jpg)');

This should do it:

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