Ajax负载剂量不显示SVG图像

时间:2016-02-13 10:02:23

标签: jquery ajax html5 svg

请查看此网址:http://www.kheshtokhak.com/en/
进入网站,您将看到一个SVG颜色窗口菜单,其文本是图像,单击其中一个 加载AJAX后,在新页面中刷新浏览器 现在再次单击enter并单击左上角的徽标,将看到没有文本的菜单 这就是问题!我试图通过jQuery在AJAX中成功调用图像但是不起作用,我该如何解决?

这是SVG结构:

<svg class="nav menu" xmlns="http://www.w3.org/2000/svg">
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/en/about-us/introduction" xlink:title="">
<text>About us</text>
<defs>
    <pattern id="text144" patternUnits="objectBoundingBox" width="100%" height="100%">
                    <image xlink:href="http://www.kheshtokhak.com/images/window_text/about_us_en.png" width="163" height="275"></image>
    </pattern>
</defs>
<path fill="url(#text144)" d="M33 156 l125 -30 l38 108 l-163 167 z"></path>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/en/events" xlink:title="">
<text>Events</text>
<defs>
    <pattern id="text145" patternUnits="objectBoundingBox" width="100%" height="100%">
                    <image xlink:href="http://www.kheshtokhak.com/images/window_text/events_en.png" width="285" height="160"></image>
    </pattern>
</defs>
<path fill="url(#text145)" d="M37 397 l156 -160 l129 47 l-43 113 z"></path>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/en/projects/all-projects" xlink:title="">
<text>Projects</text>
<defs>
    <pattern id="text146" patternUnits="objectBoundingBox" width="100%" height="100%">
                    <image xlink:href="http://www.kheshtokhak.com/images/window_text/projects_en.png" width="285" height="160"></image>
    </pattern>
</defs>
<path fill="url(#text146)" d="M37 401 l242 0 l43 113 l-129 47 z"></path>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/en/contact-us" xlink:title="">
<text>Contact</text>
<defs>
    <pattern id="text147" patternUnits="objectBoundingBox" width="100%" height="100%">
                    <image xlink:href="http://www.kheshtokhak.com/images/window_text/contact_en.png" width="163" height="275"></image>
    </pattern>
</defs>
<path fill="url(#text147)" d="M33 397 l163 167 l-38 108 l-125 -30 z"></path>
</a>
</svg>

所有图像都在模式之间。

0 个答案:

没有答案