使用this Stackoverflow问题和第一个答案,我能够将文件准备好的SVG图像转换为内联svg。我也可以从CSS引用它的路径'元素来添加悬停笔划。
我要完成的下一件事是添加onclick到每个路径,而不必将其添加到svg文件本身。我假设因为CSS可以识别每个路径的类,我也应该能够在javascript中识别每个路径的ID,但是我无法弄清楚如何。这是我的代码:
<body>
<div id="mapSideBar" class="left">
</div>
<div id="mapMain" class="left">
<img id = "mapImg" src="canada2.svg" class="logo" />
</div>
</body>
我有上面链接中提到的函数将它转换为内联SVG,我的路径有id - path1,path2,path3和path4。我尝试将以下内容添加到jQuery(document).ready()
函数中:
var $paths = jQuery(document).find('path');
$paths.each(function() {
(this).click(onImgClick((this).id));
});
只是为了看看我是否可以在每条路径上获得一个句柄,但我不能。有没有我缺少的东西,或者甚至有办法为每条路径分配onclick事件处理程序?
谢谢你, 仙人
答案 0 :(得分:6)
这是一个有效的解决方案:JSFiddle
HTML :
<img class="svg" src="http://upload.wikimedia.org/wikipedia/en/e/e5/My_Little_Pony_Friendship_is_Magic_logo.svg"/>
CSS :
svg path:hover {
fill: red !important;
}
JavaScript :
/*
* Replace all SVG images with inline SVG
*/
jQuery('img.svg').each(function(){
var $img = jQuery(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
jQuery.get(imgURL, function(data) {
// Get the SVG tag, ignore the rest
var $svg = jQuery(data).find('svg');
// Add replaced image's ID to the new SVG
if(typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
// Add replaced image's classes to the new SVG
if(typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass+' replaced-svg');
}
// Remove any invalid XML tags as per http://validator.w3.org
$svg = $svg.removeAttr('xmlns:a');
// Replace image with new SVG
$img.replaceWith($svg);
// Add an handler
jQuery('path').each(function() {
jQuery(this).click(function() {alert(jQuery(this).attr('id'));});
});
});
});
答案 1 :(得分:0)
jQuery(document).ready()
不足以确保您的内联svg已正确加载。
要验证这是否是实际问题,请在函数中添加超时,看看它是否更好。
最终,您可能需要做的是向执行内联svg转换的函数添加回调。