RIOT.JS - Ereignisbehandlung
Wir können HTML-Elementen ein Ereignis hinzufügen, ähnlich wie wir mit dem refs-Objekt auf HTML-Elemente zugreifen. Als ersten Schritt fügen wir einem DOM-Element ein ref-Attribut hinzu und greifen mit this.ref im Skriptblock des Tags darauf zu.
Attach ref - Fügen Sie einem DOM-Element das ref-Attribut hinzu.
<button ref = "clickButton">Click Me!</button>
Use the refs object- Verwenden Sie jetzt das Objekt refs im Ereignis mount. Dieses Ereignis wird ausgelöst, wenn RIOT das benutzerdefinierte Tag bereitstellt und das refs-Objekt auffüllt.
this.on("mount", function() {
console.log("Mounting");
console.log(this.refs.username.value);
})
Beispiel
Es folgt das vollständige Beispiel.
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>
Dies führt zu folgendem Ergebnis: