最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - when does the svg onload function happen - Stack Overflow

programmeradmin1浏览0评论

Given this:

<?xml version="1.0" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  ".1/DTD/svg11.dtd">
<svg width="100px" height="100px" version="1.1"
 xmlns=""
>
<text 
 x="20" 
 y="20" 
 onload="alert('load'); setAttribute('fill', 'fuchsia')"
 onclick="setAttribute('fill', 'lightgreen')"
 onmouseout="setAttribute('fill', 'black')"
>Load me</text>
</svg>

I would expect to see pink text when the svg was opened. onclick and onmouseout work as expected.

This doesn't happen in firefox. IE can't open it, period.

Any explanations?

Given this:

<?xml version="1.0" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  "http://www.w3/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100px" height="100px" version="1.1"
 xmlns="http://www.w3/2000/svg"
>
<text 
 x="20" 
 y="20" 
 onload="alert('load'); setAttribute('fill', 'fuchsia')"
 onclick="setAttribute('fill', 'lightgreen')"
 onmouseout="setAttribute('fill', 'black')"
>Load me</text>
</svg>

I would expect to see pink text when the svg was opened. onclick and onmouseout work as expected.

This doesn't happen in firefox. IE can't open it, period.

Any explanations?

Share Improve this question asked Oct 27, 2011 at 14:26 mr calendarmr calendar 9955 gold badges11 silver badges21 bronze badges 1
  • 1 For performance reasons Firefox only sends onload events to <svg> elements. – Robert Longson Commented May 29, 2014 at 13:47
Add a ment  | 

2 Answers 2

Reset to default 4

Use onload event on <svg> element. This works fine on all browsers.

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<svg onload="init(evt)" xmlns="http://www.w3/2000/svg" xmlns:xlink="http://www.w3/1999/xlink" xmlns:gui="http://www.kevlindev./gui">
    <script>var info,infoElem;

    function init(e) {
        if ( window.svgDocument == null )
            svgDocument = e.target.ownerDocument;

        infoElem = svgDocument.getElementById("info");
        infoElem.setAttributeNS(null,"fill", "fuchsia");
    }

    function changeColor(c){
        infoElem.setAttributeNS(null,"fill", c);
    }</script>
    <text id="info" x="20"  y="20" onclick="changeColor('lightgreen')" onmouseout="changeColor('black')">Load me</text>
</svg>

This worked for me

//snip...

    <svg width="100px" height="100px" version="1.1" onload="alert('load'); setAttribute('fill', 'fuchsia')"
     xmlns="http://www.w3/2000/svg"
    >

//snip...
发布评论

评论列表(0)

  1. 暂无评论