RIOT.JS - Zugriff auf DOM
Wir können 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 refs-Objekt im mount-Ereignis. Dieses Ereignis wird ausgelöst, wenn RIOT das benutzerdefinierte Tag bereitstellt und das refs-Objekt auffüllt.
this.on("mount", function() {
this.refs.clickButton.onclick = function(e) {
console.log("clickButton clicked");
return false;
};
})
Beispiel
Es folgt das vollständige Beispiel.
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>
Dies führt zu folgendem Ergebnis: