SVG在appendChild(Ele)时,浏览器不显示问题

解决办法一:
创建节点的时候,改成 document.createElementNS('http://www.w3.org/2000/svg', 'line');

var xKeDu = document.createElementNS('http://www.w3.org/2000/svg', 'line');
xKeDu.setAttribute("x1",100);
xKeDu.setAttribute("y1",590);
xKeDu.setAttribute("x2",100);
xKeDu.setAttribute("y2",600);
xKeDu.style.stroke = "#333333";
xKeDu.style.strokeWidth = "1px";
xKeDuList.appendChild(xKeDu);

解决办法二:

var xKeDuText = document.createElement('text');
xKeDuText.textContent = item.time;
xKeDuText.setAttribute("x",824 / (data.length + 1) * (index+1) + 80);
xKeDuText.setAttribute("y",630);
// xKeDuList.appendChild(xKeDuText);
xKeDuList.innerHTML = xKeDuList.innerHTML + xKeDuText.outerHTML;

你可能感兴趣的:(SVG在appendChild(Ele)时,浏览器不显示问题)