元素创建者JS 轻松创建具有javascript数组的元素。 var elements = [ { 'tag' : 'div' , 'html' : 'a' , 'child' : [ { 'tag' : 'button' , 'att' : { 'id' : 'wowow' } , 'html' : 'e' , 'script' : { 'click' : function ( params ) { console . log ( this ) ; } } } ] } ] ; create ( elements , document . body ) ;