如何使用jquery定位GB?
请点击此处查看html http://jsbin.com/opedih/1/edit
我需要类似下面的内容
$("g[data-code='GB']").mouseover(function(){
alert('test');
});
答案 0 :(得分:1)
$('g > path[data-code="GB"]').mouseover(function(){
alert('test');
});