请看一下这个小提琴:http: //jsfiddle.net/arasbm/Tyxea/14/
如您所见,我想在触发事件时转换 SVG 元素。您可以单击箭头,它应该可以工作,因为它使用嵌入在 SVG 范围内的 JavaScript 代码:
<svg id="my-svg" width="20cm" height="20cm" viewBox="0 0 600 600"
xmlns="http://www.w3.org/2000/svg" version="1.1">
<desc>Example showing how to transform svg elements
using SVGTransform objects</desc>
<script type="application/ecmascript"> <![CDATA[
function transformMe(evt) {
// svg root element to access the createSVGTransform() function
var svgroot = evt.target.parentNode;
// SVGTransformList of the element that has been clicked on
var tfmList = evt.target.transform.baseVal;
// Create a seperate transform object for each transform
var translate = svgroot.createSVGTransform();
translate.setTranslate(50,5);
var rotate = svgroot.createSVGTransform();
rotate.setRotate(10,0,0);
var scale = svgroot.createSVGTransform();
scale.setScale(0.8,0.8);
// apply the transformations by appending the SVGTranform objects
// to the SVGTransformList associated with the element
tfmList.appendItem(translate);
tfmList.appendItem(rotate);
tfmList.appendItem(scale);
}
]]> </script>
<polygon fill="orange" stroke="black"
stroke-width="5"
points="100,225 100,115 130,115 70,15 70,15 10,115 40,115 40,225"
onclick="transformMe(evt)"/>
...
</svg>
这行得通,但我想让我的 JavaScript 代码与SVG
元素分开。根据this W3C document,我应该能够通过使用top
范围引用它来调用javascript函数。这就是我为矩形所做的:
<rect x="200" y="100" width="100" height="100"
fill="yellow" stroke="black" stroke-width="5"
onclick="top.transformMe(evt)"/>
但是,单击矩形会在控制台中出现以下错误:
Error: Permission denied to access property 'transformMe' @ http://fiddle.jshell.net/arasbm/Tyxea/14/show/:1
有人可以告诉我如何解决这个问题。我在这个示例中演示的真正问题是:使用这些元素之外的 JavaScript 代码处理 SVG 元素上的事件的正确方法是什么?