fix: statement problem

This commit is contained in:
mrxiaozhuox 2022-02-14 16:52:16 +08:00
parent e03f8ca90c
commit dd9f0f362e

View file

@ -102,10 +102,11 @@ export class Interpreter {
SetAttribute(root, field, value, ns) {
const name = field;
const node = this.nodes[root];
console.log(ns);
if (ns === "style") {
// @ts-ignore
node.style[name] = value;
} else if (ns != null || ns !== undefined) {
} else if (ns != null || ns != undefined) {
node.setAttributeNS(ns, name, value);
} else {
switch (name) {