google 关闭中的 DomHelper 是什么?
Could somebody explain what is the meaning of DomHelper in google closure?
What is it for and how it may be useful?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DomHelper
提供与goog.dom
中的静态实用程序方法提供的功能类似的功能。不同之处在于,DomHelper 实例可以绑定到对应于不同窗口的document
对象,例如 IFrame 或父框架。这基本上允许 UI 控件在正确的窗口范围内进行 DOM 操作,即使实际对象位于另一个窗口中。DomHelper
offers similar functionality to that provided by static utility methods withingoog.dom
. The difference is that aDomHelper
instance can be bound to adocument
object corresponding to a different window, such as an IFrame, or the parent frame. This basically allows UI controls to conduct their DOM manipulations within the confines of the correct window, even if the actual objects live in another.假设您指的是 goog.dom.DomHelper - 看起来它为 DOM 操作提供了一种高效的跨浏览器解决方案。
Assuming you are referring to goog.dom.DomHelper - it looks like it provides an efficient, cross-browser solution to DOM manipulation.