Dojo marginBox 返回不同的值

发布于 2024-11-02 03:31:36 字数 127 浏览 0 评论 0原文

任何人都可以指导我有什么区别 this.marginBoxdojo.marginBox(this.node)

我对这两个返回不同值的情况感到困惑。

Anyone can guide me what's the difference between
this.marginBox
and
dojo.marginBox(this.node)

I'm confusing with this two where they return different value.

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

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

发布评论

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

评论(3

白昼 2024-11-09 03:31:36

您返回的两个值是什么? (我已经有一段时间没有使用dojo了,但我似乎记得其中一个包括padding,另一个不包括?)

What are the two values you're getting back? (I haven't used dojo for a while, but I seem to remember one of them including padding and the other not?)

尐籹人 2024-11-09 03:31:36

Dojo 只提供了一个 dojo.marginBox() 方法 — 我不知道 Dojo 提供了任何类型的原型或 mixin 来启用 this.marginBox 方法。换句话说,只有 dojo.marginBox(this.node) 是正确的。

如果您提供这些方法为您返回的内容的示例,将会有所帮助。
我希望:

var example = this.marginBox;

在大多数情况下返回未定义。但是,如果您尝试像这样分配给 this.marginBox

// Don't do this - marginBox is not a DOM property!
this.marginBox = 10;

那么将来对 this.marginBox 的调用将返回 10...它可能看起来它正在做一些事情,但它与 Dojo 或 CSS 无关,只会返回您输入的内容...不是很有用!

Dojo only provides a dojo.marginBox() method — I am not aware of Dojo providing any kind of prototype or mixin that enables a this.marginBox method. In other words, only dojo.marginBox(this.node) is correct.

It would have helped if you provided examples of what those methods are returning for you.
I would expect:

var example = this.marginBox;

to return undefined in most circumstances. However if you have tried to assign to this.marginBox like this:

// Don't do this - marginBox is not a DOM property!
this.marginBox = 10;

then future calls to this.marginBox would return 10... it might look like it is doing something, but it's got nothing to do with Dojo or CSS and will just return what you put in... not very useful!

无法回应 2024-11-09 03:31:36

我在使用 dojo.marginBox 时会非常小心,我在浏览有关它的问题时发现了以下内容:

https://bugs.dojotoolkit.org/ticket/12492

不幸的是,dojo 团队不会解决这个问题,因为方法 dojo.marginBox(..) 不适用于隐藏节点,引用票证“在隐藏节点上调用时行为未定义”

我做了什么,我检查了节点的 clientWidth / Height。

I would be very careful in using dojo.marginBox, I was browsing around an issue about it and I found the following:

https://bugs.dojotoolkit.org/ticket/12492

unfortunately the dojo team won't fix the problem because the method dojo.marginBox(..) will not work for hidden nodes, quoting the ticket "the behavior is undefined when called on hidden nodes".

What I did I checked the node's clientWidth / Height.

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