元素创建器JS
使用javascript轻松创建元素。
例子#1
HTML:
< div xss=removed> < / div >
JAVASCRIPT:
var elements = [
{
'tag' : 'div' ,
'att' : {
'class' : 'example-1'
} ,
'child' : [
{
'tag' : 'span' ,
'html' : 'Auto script!' ,
'script' : function ( params ) {
alert ( 'Example #1' ) ;
}
}
]
}
] ;
var newElem = create ( elements , document . getElementById ( 'example
评论0
最新资源