Get item index : Array « Dojo toolkit « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>

      var a = [ "B", "J", "K", "A", "B" ];
      alert(dojo.indexOf(a, "J") + ", " + dojo.indexOf(a, "B"));
    </script>

  </head>

  <body></body>

</html>








29.31.Array
29.31.1.Array filter
29.31.2.Array index of
29.31.3.Array index offset
29.31.4.Get last index of
29.31.5.Is array like
29.31.6.Is object an array
29.31.7.Get element index in an array
29.31.8.Get item index