根據W3C建議的方法getSVGDocument()應返回SVGDocument但lib.d.ts代碼:如何在Typescript中使用SVGDocument?
interface GetSVGDocument {
getSVGDocument(): Document;
}
所以,我怎麼能這樣做呢? :
var svgDoc:SVGDocument= document.getElementById('myId').getSVGDocument();
var svgElement:SVGElement = svgDoc.getElementById("myElement");
... further manipulations on svgElement
更普遍的是,他們是否通過了TypeScript中的SVG實現或者我錯過了什麼? SVG dom有沒有適當的實現,或者我怎麼實現它?