`

dojo 中使用 jquery

 
阅读更多

dojo/query 不好用, 想用jquery做dom查询, 列子如下, 注意jquery的路径就好了

 

 

<script type="text/javascript"
  src="https://ajax.googleapis.com/ajax/libs/dojo/1.7.0/dojo/dojo.js"
  data-dojo-config="async: true, packages: [
    { name: 'jquery', location: 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1', 
      main: 'jquery' }
    ]">
</script>

The second step is to modify our source code to add the actual loading of jQuery through the require function: 
 
<script type="text/javascript">
  define.amd.jQuery = true;
  require(["jquery", "dojo/query", "dojo/NodeList-dom"], function(jquery, $){
    $("output").style("visibility", "visible");
    jquery("#output").css("visibility", "hidden");
  });
</script>

 

 

 

 

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics