RIOT.JS - Gestion des événements
Nous pouvons attacher un événement aux éléments HTML de la même manière que nous accédons aux éléments HTML à l'aide de l'objet refs. Dans un premier temps, nous ajoutons un attribut ref à un élément DOM et y accédons en utilisant this.ref dans le bloc de script de la balise.
Attach ref - Ajouter un attribut ref à un élément DOM.
<button ref = "clickButton">Click Me!</button>
Use the refs object- Utilisez maintenant l'objet refs dans l'événement de montage. Cet événement est déclenché lorsque RIOT monte la balise personnalisée et remplit l'objet refs.
this.on("mount", function() {
console.log("Mounting");
console.log(this.refs.username.value);
})
Exemple
Voici l'exemple complet.
custom5Tag.tag
<custom5Tag>
<form>
<input ref = "username" type = "text" value = "Mahesh"/>
<input type = "submit" value = "Click Me!" />
</form>
<script>
this.on("mount", function() {
console.log("Mounting");
console.log(this.refs.username.value);
})
</script>
</custom5Tag>
custom5.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom5Tag></custom5Tag>
<script src = "custom5Tag.tag" type = "riot/tag"></script>
<script>
riot.mount("custom5Tag");
</script>
</body>
</html>
Cela produira le résultat suivant -