Generalize support for events in Dom element maker
This commit is contained in:
parent
a74b0cc480
commit
0d7f180ce2
1 changed files with 6 additions and 4 deletions
|
@ -22,11 +22,13 @@ function make(tag, properties, children) {
|
|||
case "maxlength":
|
||||
e.setAttribute("maxlength", value);
|
||||
break;
|
||||
case "onClick":
|
||||
e.addEventListener("click", value);
|
||||
break;;
|
||||
default:
|
||||
e[key] = value;
|
||||
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++) {
|
||||
|
|
Loading…
Reference in a new issue