Generalize support for events in Dom element maker

This commit is contained in:
Tissevert 2022-07-25 21:13:15 +02:00
parent a74b0cc480
commit 0d7f180ce2
1 changed files with 6 additions and 4 deletions

View File

@ -22,13 +22,15 @@ function make(tag, properties, children) {
case "maxlength":
e.setAttribute("maxlength", value);
break;
case "onClick":
e.addEventListener("click", value);
break;;
default:
var matched = key.match(/on([A-Z]\w+)/);
if(matched) {
e.addEventListener(matched[1].toLowerCase(), value);
} else {
e[key] = value;
}
}
}
for(var i = 0; i < children.length; i++) {
e.appendChild(children[i]);
}