如何用JavaScript创建SVG

326 阅读1分钟

背景

在做业务的时候,使用 的href, 但是一直不显示,我是用createElement创建的svg,一直也没往createElement这上面考虑

createElementNS

    function createIcon () {
        const svgIcon = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
        const useChild = document.createElementNS('http://www.w3.org/2000/svg', 'use');

        useChild.setAttributeNS('http://www.w3.org/1999/xlink', 'href', `#icon`);
        svgParent.appendChild(useChild);
        svgParent.classList = 'icon-svg';
        return svgIcon;
    }