This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Demo html5 page</title> | |
<!-- data-main attribute tells require.js to load | |
scripts/app.js after require.js loads. --> | |
<script data-main="scripts/app" src="scripts/require.js"></script> | |
</head> | |
<body> | |
<h1>RequireJS demo</h1> | |
<div><button id="sayHi">Try me!!</button></div> | |
<div>languages</div> | |
<ul id="languages"> </ul> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* data.js | |
**/ | |
define({ | |
"programminglanguages": ["Java", "Python","Scala", "Javascript"] | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* behaviour.js | |
**/ | |
define({ | |
"sayHi": function() { alert("Hi there :)"); } | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* app.js | |
* | |
* This demo assumes my project looks like | |
* projectfolder | |
* - requirejsdemo.html | |
* - scripts | |
* - app.js | |
* - behaviour.js | |
* - data.js | |
**/ | |
requirejs(["./behaviour","./data"], function(behaviour, data) { | |
//for this little demo we will use the plain good ol' DOM API | |
var languagesEle = document.getElementById("languages"); | |
data.programminglanguages.forEach( | |
function(language){ | |
//first we create a <li> tag | |
var li = document.createElement("li"); | |
//next we insert the language into the <li> tag | |
li.appendChild(document.createTextNode(language)); | |
//we still need to attach the <li> to the existing <ul id="languages"> | |
languagesEle.appendChild(li); | |
} | |
); | |
//we will also add behaviour to the <button id="sayHi"> | |
document.getElementById("sayHi").onclick=behaviour.sayHi; | |
}); |
No comments:
Post a Comment