Dojo 相当于 jQuery $('html')

Posted

技术标签:

【中文标题】Dojo 相当于 jQuery $(\'html\')【英文标题】:Dojo equivalent of jQuery $('html')Dojo 相当于 jQuery $('html') 【发布时间】:2013-01-15 15:23:18 【问题描述】:

在 Dojo 中有一种选择文档正文的简写方式: http://dojotoolkit.org/reference-guide/1.7/dojo/body.html

但是如何选择 DOM 树的顶部,即 HTML 元素本身?在 jQuery 中,这可以通过 $('html') 来完成,我正在寻找与 Dojo 中该方法等效的方法。

【问题讨论】:

【参考方案1】:
require(["dojo/query"], function(query)
  var html = query("html")[0];
);

【讨论】:

以上是关于Dojo 相当于 jQuery $('html')的主要内容,如果未能解决你的问题,请参考以下文章

Dojo 相当于 $(document).scrollTop?

什么是 jQuery 委托的 DOJO 等价物? [复制]

jquery 是不是取代了对 dojo 的需求?

dojo和jquery混合使用

使用 Dojo AMD 加载程序加载 jQuery 问题

在 jQuery 中的元素 this 的 Dojo 中等效吗?