简单示例,将颜色文本从蓝色更改为红色:
<svg width="500" height="500">
<text id="TextElement" x="20" y="200"
style="font-family:Verdana, sans-serif; font-size:13; stroke:blue" >
Now you see me!
<set attributeName="stroke" attributeType="CSS" to="red" begin="3s" fill="freeze"/>
</text>
</svg>
当开始=“3s”工作正常但
<svg width="500" height="500">
<text id="TextElement" x="20" y="200"
style="font-family:Verdana, sans-serif; font-size:13; stroke:blue" >
Now you see me!
<set attributeName="stroke" attributeType="CSS" to="red" begin="accessKey(a)" fill="freeze"/>
</text>
</svg>
当开始=“accessKey(a)”时,它无效。
浏览器:Google Chrome 35.0.1916.153(官方版本274914)。
P.S。我只需要SVG 中的accessKey(),而不是JavaScript或其他......
FireFox v17和v31中的更新:,accessKey(a)正常工作