RIOT.JS-DOM 액세스
refs 객체를 사용하여 HTML 요소에 액세스 할 수 있습니다. 첫 번째 단계로 DOM 요소에 ref 속성을 추가하고 태그의 스크립트 블록에서 this.ref를 사용하여 액세스합니다.
Attach ref − DOM 요소에 ref 속성을 추가합니다.
<button ref = "clickButton">Click Me!</button>
Use the refs object− 이제 마운트 이벤트에서 refs 객체를 사용합니다. 이 이벤트는 RIOT가 커스텀 태그를 마운트하고 refs 객체를 채울 때 시작됩니다.
this.on("mount", function() {
this.refs.clickButton.onclick = function(e) {
console.log("clickButton clicked");
return false;
};
})
예
다음은 완전한 예입니다.
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>
이것은 다음 결과를 생성합니다-