jQuery UI正在禁用SVG图像中的链接(xlink:href)

jQuery UI is disabeling links in SVG image ( xlink:href )

本文关键字:链接 xlink href 图像 UI SVG jQuery      更新时间:2023-09-26

我有一个嵌入的SVG图像,其中包含一些指向外部URL的链接。当将jQuery UI添加到文档中时,SVG的链接将不再工作。我架起一把小提琴来示范他的行为。当从"外部资源"中删除jQuery UI时,链接将起作用。

SVG链接如下所示:

<a xlink:href="/hamburg-nord" xlink:title="SomeName">
<path id="nord" d=".....a lot of image-data-coordinates.........."/>
</a>

我怀疑,这是jQuery UI中的一个错误。但是我该怎么做才能使链接正常工作呢?有变通办法吗?

因为您正在将accordion应用于所有<a>元素:

$( "#accordion, a, #xxx" ).accordion({...});

如果不考虑它们,则SVG链接可以正常工作。

$( "#accordion, #xxx" ).accordion({
    collapsible: true
});

Fiddle:http://jsfiddle.net/c4tdtvaf/3/