For each item : foreach « Dojo toolkit « JavaScript DHTML
- JavaScript DHTML
- Dojo toolkit
- foreach
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