1
ファイルの内容を取得するロジックをいくつか行います。JSコードのレスポンステキストの要素を使用
私はSVGファイルを持っていると私はコード内のファイルを読む必要が
私の問題はここから始まる$.ajax()
機能
$.ajax({
method: 'get',
url: shapes.svg,
dataType: 'html'
}).then(function (value) {
// HTML code from SVG file.
console.log(value);
});
を使用することにより、これを行う... は、今私は、プレーンテキストを持っていると私は必要文書を使用してJS関数を使用することができます。私は正確にgetBBox()
だから、必要
は、私がdocument.createElment()
のようなものを使用したいが、それは唯一のHTMLタグ名ではありませんその属性を持つすべての要素を受け入れます。以下
は、応答の一部であるSVGファイルから
<svg x="0" y="0" width="2200" height="2200" version="1.1" xmlns="http://www.w3.org/2000/svg" id="svgimportshapes" xlink="http://www.w3.org/1999/xlink">
<g xmlns="http://www.w3.org/2000/svg" data-paper-data=""unlocked"" id="ShapeLayer" fill="none" fill-rule="nonzero" stroke="none" stroke-width="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal">
<text x="1018.68119" y="511.99246" id="text" fill="#000000" stroke="none" stroke-width="1" font-family="helvetica" font-weight="normal" font-size="18" text-anchor="start">Parterre places debout</text>
</svg>
あなたは "使用" とはどういう意味ですか、明確にしてください? SVGファイルの内容であるajaxレスポンスと、それに何が必要ですか?ページにsvgイメージを表示しますか?これを$( '#your_element').html(your_svg_contents)に挿入しますか? – 2oppin
バウンディングボックスを取得するには、DOMに追加する必要があります。 jQuery要素を使用して私の下のソリューションを参照してください –