我一直在使用jQuery將一些SVG追加到我的代碼中,並且我在svg元素上的動畫有問題。 的事情是,當我使用追加()插入此代碼jQuery append將值轉換爲小寫
<circle fill="#2380c2" cx="20.5" cy="12.5" r="1.5" id="circ1">
<animate begin="svg_1.mouseover" end="svg_1.mouseout" from="20.5" to="20.5" dur="1.5s" repeatCount="indefinite" attributeName="cx" values="20.5;18.5;20.5;22.5;20.5"></animate
</circle>
,的attributeName轉化爲爲AttributeName和我的谷歌瀏覽器不能識別它作爲一個有效的屬性。
有關如何解決此append()問題的任何幫助?
可能重複的:http://stackoverflow.com/questions/3642035/jquerys-append-not-working-with-svg-element/3642265#3642265 –