นี่คือสิ่งที่ฉันมี:
<path class="..." onmousemove="show_tooltip(event,'very long text
\\\n I would like to linebreak')" onmouseout="hide_tooltip()" d="..."/>
<rect class="tooltip_bg" id="tooltip_bg" ... />
<text class="tooltip" id="tooltip" ...>Tooltip</text>
<script>
<![CDATA[
function show_tooltip(e,text) {
var tt = document.getElementById('tooltip');
var bg = document.getElementById('tooltip_bg');
// set position ...
tt.textContent=text;
bg.setAttribute('width',tt.getBBox().width+10);
bg.setAttribute('height',tt.getBBox().height+6);
// set visibility ...
}
...
ตอนนี้ข้อความ Tooltip ที่ยาวมากของฉันไม่มี linebreak แม้ว่าฉันจะใช้ alert (); มันแสดงให้ฉันเห็นว่าจริงๆแล้วข้อความมีสองบรรทัด (แม้ว่าจะมี "\" อยู่ฉันจะลบออกทีละรายการได้อย่างไร)
ฉันไม่สามารถใช้ CDATA ได้ทุกที่