问题描述
我要做的是在svg中更换图片,添加了JS在svg中。在浏览器上能够很好的运行,但是在蜡染的JSVGCanvas中却没有反应。有没有办法解决这个问题呢? 先谢谢了!
解决方案
帮你解决了这个问题,因为在浏览器中使用javascript操作svg的元素没有那么规范,而batik操作svg元素需要严格按照w3c的svg规范,所以svg文件中的方法需要改为:function dragOn(spath){var imgView = document.getElementById("imgView");imgView.setAttributeNS( "http://www.w3.org/1999/xlink", "href", spath ); }我已经测试过,具体可参考:http://www.w3.org/Graphics/SVG/WG/wiki/Href下面这些方式中,就最后两个是Correct正确的。el.setAttribute( "href", "foo.png" ); el.setAttribute( "xlink:href", "foo.png" ); el.setAttributeNS( "xlink:href", "foo.png" ); el.setAttributeNS( "xlink", "href", "foo.png" ); el.setAttributeNS( xlink, "href", "foo.png" ); (where there is no JS variable called "xlink") el.setAttributeNS( "http://www.w3.org/1999/xlink", "href", "foo.png" ); (Correct) var xlinkns = "http://www.w3.org/1999/xlink"; el.setAttributeNS( xlinkns, "href", "foo.png" ); (Correct)