1.0.1 • Published 6 years ago

zhf.create-element v1.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

创建元素

const createElement = require('zhf.create-element');

const elementNode = createElement({
    elementName: 'div',
    style: {width: '100px', height: '100px'},
    customAttribute: {hello: 'world'},
    attribute: {
        className: 'g-test',
        innerHTML: '我是被创建的元素',
    },
});

console.log(elementNode.outerHTML); // <div style="width: 100px; height: 100px;" data-hello="world" class="g-test">我是被创建的元素</div>