如何将自定义类分配给 YUI3 插件/小部件对象

发布于 2024-10-29 03:20:47 字数 522 浏览 1 评论 0原文

考虑以下代码。

var overlay = new Y.Overlay({
                    id:'tooltip-tag',
                    bodyContent:"Loading.....",
                    xy:[e.target.getX(),e.target.getY()+30]
                });

覆盖层获取属性中给定的 id。但是如果我想添加一个类怎么办?

有没有类似的东西:

var overlay = new Y.Overlay({
                    **class:'tooltip-tag'**,
                    bodyContent:"Loading.....",
                    xy:[e.target.getX(),e.target.getY()+30]
                });

Consider the following code.

var overlay = new Y.Overlay({
                    id:'tooltip-tag',
                    bodyContent:"Loading.....",
                    xy:[e.target.getX(),e.target.getY()+30]
                });

The overlay gets the id as given in attributes. But what if I want to add a class ?

IS there something like:

var overlay = new Y.Overlay({
                    **class:'tooltip-tag'**,
                    bodyContent:"Loading.....",
                    xy:[e.target.getX(),e.target.getY()+30]
                });

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

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

发布评论

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

评论(1

一向肩并 2024-11-05 03:20:47

不。这里有三种方法可以实现您想要的功能:

  1. 在标记中添加类。我是
    猜测这不是你想要的。
  2. 子类 Overlay 并添加
    className 配置属性。如果
    您还有其他定制要做,
    这是一个有吸引力的选择。
  3. 挂钩 overlay:render 事件并
    将课程附加到那里。这是一个
    jsfiddle 演示了这一点
    技术:
    http://jsfiddle.net/4zN5M/1/

No. Here are three ways to do what you want:

  1. Add the class in your markup. I'm
    guessing this isn't what you want.
  2. Subclass Overlay and add a
    className config attribute. If
    you have other customization to do,
    this is an attractive option.
  3. Hook the overlay:render event and
    attach the class there. Here's a
    jsfiddle that demonstrates this
    technique:
    http://jsfiddle.net/4zN5M/1/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文