我有一個svg:文本節點,並且我想在其中添加HTML代碼。其實,我的代碼是:在SVG文本元素中插入HTML代碼
<text x="10" y="54" text-anchor="start" class="barLegend">Hello!</text>
而且我希望把這樣的事情:
<text x="10" y="54" text-anchor="start" class="barLegend"><a href='www.gmail.com'>Gmail</a></text>
當然,我希望鏈接的工作,但是,它只是顯示所有的HTML。
任何想法?
foreignObject標記不能是文本元素的子元素。 – 2012-03-30 16:26:18
謝謝!在此鏈接上創建解決方案:http://groups.google.com/group/d3-js/browse_thread/thread/77671e2884df4f1d – todotresde 2012-03-30 17:34:04
不幸的是,IE不支持foreignObject – 2016-07-26 13:13:05