HTML中嵌入SVG圖片的N種方式原文地址:
https://segmentfault.com/a/1190000010942431
設定embed標籤中的svg尺寸為適應父容器大小:(embed標籤id為jimjim)
var embed = document.querySelector('#jimjim');
var d = embed.getSVGDocument();
var svg = d.querySelector('svg');
svg.setAttribute("viewBox","0 0 660 342");