8
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SVGをjQuery・JavaScriptで操作する

Posted at

HTMLにSVGを埋め込む

svg.html
<object id="svg-obj" data="/images/sample.svg" type="image/svg+xml"></object>

imgタグではなくobjectタグで表記する。

JavaScriptでSVG読み込み

svg.js
// SVGオブジェクト
var $svg;
// SVG読み込み
var loadSvgObject = function() {
    if (!$svg) {
        var svgTag = document.getElementById('svg-obj');
        if (!svgTag) return;
        var svgDoc = svgTag.contentDocument;
        $svg = $(svgDoc).find('svg');
    }
};

こんな感じで関数化する。
SVGファイルをちゃんと読み込んでいるか確認する場合は、

console.dir($svg);

とかデバッグで中身をチェック。
重要なのは、ちゃんとページ読み込み後に実行すること。

$(document).ready(function() {
    // NG:読み込まれない!
    loadSvgObject();
});

$(window).on('load', function() {
    // OK
    loadSvgObject();
    //...処理
});

ただ、これだとブラウザの戻るボタンで戻った時にちゃんと読み込んでくれなかったりするから、
リロードするなり対策する。

以上。

8
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?