我正在使用SVG创建类似Google Analytic的图形来沿点绘制数据。我提供了一个函数,该函数将接受点数组并将其构建到path元素中,该元素将插入HTML页面上的SVG中。此功能已在Chrome,Firefox,Edge和Safari上成功完成,但是在使用IE11时,它甚至不会输出该元素。
我认为兼容性问题在于svgPath();功能。我读过IE11不支持ES6 javascript,我想知道是否有人对IE11和javascript有更好的了解可以帮助诊断问题的原因。
仅供参考,如果我将路径代码从DOM复制到可以工作的浏览器上,并直接将其放在HTML中,则可以在IE11上正常工作。因此,问题似乎完全在javascript函数上,而不是SVG未针对IE11显示。
Javascript:
var points = [
[5, 10],
[10, 40],
[40, 30],
[60, 5],
[90, 45],
[120, 10],
[150, 45],
[200, 10]
];
// Render the svg <path> element
// I: - points (array): points coordinates
// - command (function)
// I: - point (array) [x,y]: current point coordinates
// - i (integer): index of 'point' in the array 'a'
// - a (array): complete array of points coordinates
// O: - (string) a svg path command
// O: - (string): a Svg <path> element
var svgPath = function svgPath(points, command) {
// build the d attributes by looping over the points
var d = points.reduce(function (acc, point, i, a) {return i === 0 ? 'M ' +
point[0] + ',' + point[1] :
acc + ' ' + command(point, i, a);},
'');
return '<path d="' + d + '" fill="none" stroke="grey" />';
};
// Svg path line command
// I: - point (array) [x, y]: coordinates
// O: - (string) 'L x,y': svg line command
var lineCommand = function lineCommand(point) {return 'L ' + point[0] + ' ' + point[1];};
var svg = document.querySelector('.svg');
svg.innerHTML = svgPath(points, lineCommand);
HTML:
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1000"
height="200"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 200 50"
preserveAspectRatio="xMidYMid meet"
class="svg">
</svg>
该函数应该返回的字符串,但不在IE11上:
<path d="M 5,10 L 10 40 L 40 30 L 60 5 L 90 45 L 120 10 L 150 45 L 200 10" fill="none" stroke="grey"></path>
Chrome中的图形截图: https://imgur.com/a/7ZvLkb9
IE11中的图形屏幕截图: https://imgur.com/a/iaS5OJK
最后是从中获得javascript函数的源代码: https://medium.com/@francoisromain/smooth-a-svg-path-with-cubic-bezier-curves-e37b49d46c74 https://codepen.io/francoisromain/pen/dzoZZj
答案 0 :(得分:0)
正如Robert所说,您不能使用innerHTML
在IE 11中创建SVG元素。您必须自己创建元素。要创建SVG <path>
元素,请使用:
document.createElementNS("http://www.w3.org/2000/svg", "path");
然后使用setAttribute()
添加所需的属性。
var points = [
[5, 10],
[10, 40],
[40, 30],
[60, 5],
[90, 45],
[120, 10],
[150, 45],
[200, 10]
];
// Render the svg <path> element
// I: - points (array): points coordinates
// - command (function)
// I: - point (array) [x,y]: current point coordinates
// - i (integer): index of 'point' in the array 'a'
// - a (array): complete array of points coordinates
// O: - (string) a svg path command
// O: - (string): a Svg <path> element
var svgPath = function svgPath(svg, points, command) {
// build the d attributes by looping over the points
var d = points.reduce(function (acc, point, i, a) {return i === 0 ? 'M ' +
point[0] + ',' + point[1] :
acc + ' ' + command(point, i, a);},
'');
var path = document.createElementNS(svg.namespaceURI, "path");
path.setAttribute("d", d);
path.setAttribute("fill", "none");
path.setAttribute("stroke", "grey");
return path;
};
// Svg path line command
// I: - point (array) [x, y]: coordinates
// O: - (string) 'L x,y': svg line command
var lineCommand = function lineCommand(point) {return 'L ' + point[0] + ' ' + point[1];};
var svg = document.querySelector('.svg');
svg.appendChild( svgPath(svg, points, lineCommand) );
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="1000"
height="200"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 200 50"
preserveAspectRatio="xMidYMid meet"
class="svg">
</svg>