frabfr57 | Bonjour,
J'essai de faire le tuto démmarage rapide de dojo avec la version 1.5. J'ai fait :
Code :
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <title>Dojo Toolkit Test Page</title>
- <!– load the dojo toolkit base –>
- <script type="text/javascript">
- var djConfig = {
- isDebug:true,
- parseOnLoad:true
- };
- </script>
- <script type="text/javascript" src="../js/dojo-release-1.5.0/dojo/dojo.js"></script>
- <script type="text/javascript">
- dojo.ready(function(){
- dojo.query("#testHeading" )
- .style("cursor","pointer" )
- .connect("onclick",function(){
- this.innerHTML = "J'ai été cliqué";
- });
- });
- var disableLinks = function(){
- dojo.query("a" ).connect("onclick",function(e){
- e.preventDefault();//arrêter l'événement
- console.log('clicked: ',e.target);//le noeud sur lequel nous avons cliqué
- });
- };
- dojo.ready(disableLinks);
- var mineObj = {
- aMethod: function(){
- console.log('running A');
- },
- bMethod: function(){
- console.log('running B');
- }
- };
- var otherObj = {
- cMethod: function(){
- console.log('running C');
- }
- };
- dojo.ready(function(){
- // run bMethod() whenever aMethod() gets run
- dojo.connect(mineObj,"aMethod",mineObj,"bMethod" );
- // run an entirely different object’s method via a separate connection
- dojo.connect(mineObj,"bMethod",otherObj,"cMethod" );
- // start chain of events
- mineObj.aMethod();
- });
- </script>
- <style type="text/css">
- /* our CSS can go here */
- </style>
- </head>
- <body><!– this is a Typical WebPage starting point … –>
- <h1 id="testHeading">Dojo Skeleton Page</h1>
- <a class="link" href="http://www.google.fr/">First link</a>
- <a class="link" href="#">Second Link</a>
- <div id="contentNode">
- <p>Some Content To Replace</p>
- </div>
- </body>
- </html>
|
Cependant je n'ai pas la console, j'ai essayer avec la version 1.3.2 et là j'ai la console.
Y a t'il une manipultation particulière pour la version 1.5?
Merci.
Merci pour vos conseils. |