RIOT.JS - Accesso a DOM
Possiamo accedere agli elementi HTML usando l'oggetto refs. Come primo passaggio aggiungiamo un attributo ref a un elemento DOM e vi accediamo utilizzando this.ref nel blocco di script del tag.
Attach ref - Aggiungi l'attributo ref a un elemento DOM.
<button ref = "clickButton">Click Me!</button>
Use the refs object- Ora usa l'oggetto refs nell'evento mount. Questo evento viene generato quando RIOT monta il tag personalizzato e popola l'oggetto refs.
this.on("mount", function() {
this.refs.clickButton.onclick = function(e) {
console.log("clickButton clicked");
return false;
};
})
Esempio
Di seguito è riportato l'esempio completo.
custom6Tag.tag
<custom6Tag>
<form ref = "customForm">
<input ref = "username" type = "text" value = "Mahesh"/>
<button ref = "clickButton">Click Me!</button>
<input type = "submit" value = "Submit" />
</form>
<script>
this.on("mount", function() {
this.refs.clickButton.onclick = function(e) {
console.log("clickButton clicked");
return false;
};
this.refs.customForm.onsubmit = function(e) {
console.log("Form submitted");
return false;
};
})
</script>
</custom6Tag>
custom6.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom6Tag></custom6Tag>
<script src = "custom6Tag.tag" type = "riot/tag"></script>
<script>
riot.mount("custom6Tag");
</script>
</body>
</html>
Questo produrrà il seguente risultato: