私は今のところよく見える問題の答えを見つけようと2時間ほどインターネットを閲覧していますが、問題に適切な解決策が見つけられません。 私はsvgファイルのテキストを変更する必要があります。最終的にはブラウザのテキスト入力になるでしょう。私はforeignobjectを使用することができましたが、最終的には私の問題の解決策ではありません。なぜなら、私はそれをパスに合わせる必要があるからです。同様の質問へjqueryでsvgテキストを変更する
マイSVG
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 841.9 595.3" style="enable-background:new 0 0 841.9 595.3;" xml:space="preserve">
<style type="text/css">
</style>
<text transform="matrix(1 0 0 1 325.2451 144.7144)" class="st0 st1" id="id-of-the-text">hey</text>
<text class="testText" id="testText" x="10" y="20" style="fill:red;">Several lines:
<tspan x="10" y="45">First line.</tspan>
<tspan x="10" y="70">Second line.</tspan>
</text>
<text x="40" y="60">more text</text>
</svg>
と回答から失敗
$('#id-of-the-text').textContent = 'test';
$("#id-of-the-text").text("new-value");
$("#id-of-the-text")['innerText' in $("#id-of-the-text") ? "innerText" : "textContent"] = "some value";
それは何も私のために働かない、なぜそうでない場合、私は理解できない、愚かな小さなミスかもしれません。
あなたのIDは 'ID-の-text'、ない' testText'です。テキスト( '新しいテキスト'); 'は動作します:https://jsfiddle.net/5gfcym6p/ –
もう2つの異なるテキスト要素があります。それにもかかわらず、前の結果と同じ結果を返しました –