For each item : foreach « Dojo toolkit « JavaScript DHTML






For each item

 

<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
  </head>
  <body>
    <script>
      dojo.forEach(["A", "B"], function(inVal) {
        alert(inVal);
      });
    </script>
  </body>
</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.For each function with value in dijit.form.TextBox
2.Use foreach to add action to buttons