1

我目前正在使用这个可点击的地图(Wolf's map),但除了作为脚本基础的国家名单之外,我还想使用第二个国家名单。出于演示的原因,第二个菜单不能与地图在同一个 DIV 中。我一直在搜索 JQuery 文档以了解如何触发对所选元素之外的另一个元素的操作,但我不确定我是否正确 - 可能不是因为它不起作用。

原始脚本如下所示:

    $(document).ready(function(){

 var new_map='<span class="map"><span class="s1" /><span class="s2" /><span class="s3" /><span class="s4" /><span class="s5" /><span class="s6" /><span class="s7" /><span class="s8" /><span class="s9" /><span class="s10" /><span class="s11" /><span class="s12" /><span class="s13" /><span class="s14" /><span class="s15" /><span class="s16" /><span class="s17" /><span class="s18" /></span>';
 var new_bg=$("<span>");
 new_bg.addClass("bg");
 $("#europe li a").append(new_map);
 $("#europe li a").append(new_bg);

});

我想做的是在悬停另一个不是#europe li a的元素时触发相同的动作。我试过这个:

$(document).ready(function(){

 var new_map='<span class="map"><span class="s1" /><span class="s2" /><span class="s3" /><span class="s4" /><span class="s5" /><span class="s6" /><span class="s7" /><span class="s8" /><span class="s9" /><span class="s10" /><span class="s11" /><span class="s12" /><span class="s13" /><span class="s14" /><span class="s15" /><span class="s16" /><span class="s17" /><span class="s18" /></span>';
 var new_bg=$("<span>");
 new_bg.addClass("bg");
 $("#carteeurope li a").append(new_map);
 $("#carteeurope li a").append(new_bg);

 $("#menudroite li a").hover(function(){
 $(new_map).appendTo("#carteeurope li a");
 $(new_bg).appendTo("#carteeurope li a");
 });

});

它产生了一些效果,但不是预期的效果:看起来地图确实可以移动,但不能移动到好的位置(一些国家在第二个菜单上悬停几次后会得到白色背景)。

如果您能帮助我,我将不胜感激!

问候。

PS:一些相关的 HTML 和 CSS 部分。

原名单

<div id="b">
     <ul id="europe" class="bottom five_columns">
      <li id="europe1"><a href="#" title="Albania">Albania</a></li>
      <li id="europe2"><a href="#" title="Andorra">Andorra</a></li>
      <li id="europe3"><a href="#" title="Austria">Austria</a></li>
      ...

我想添加的菜单

<div id="menudroite">
<ul>
<li><a href="#">Accueil</a></li>
<li><a href="#" title="France">France</a></li>
<li><a href="#" title="Grèce">Grèce</a></li>
...

原始的 CSS

#europe,#europe span.bg{background:transparent url('europe-600px.png') no-repeat -9999px 0}
#europe{position:relative;top:0;left:0;display:block;background-position:0 -966px;list-style:none}
 #europe *{padding:0;margin:0;border:0 none;outline:0 none}
  #europe li{cursor:pointer}
  #europe li span{position:absolute;display:block;width:0;height:0;z-index:15}
  #europe li a span.bg{z-index:3}
  #europe li .map{top:0;left:0}
...
 #europe li span{position:absolute;display:block;top:0;left:0;width:0;height:0;z-index:15}
 #europe1 a:hover .bg{top:395px;left:303px;width:20px;height:40px;background-position:-10px -10px} #europe1 .s1{top:401px;left:303px;width:15px;height:32px} #europe1 .s2{top:397px;left:305px;width:8px;height:4px} #europe1 .s3{top:418px;left:318px;width:4px;height:9px}
 #europe2 a:hover .bg{top:385px;left:133px;width:5px;height:6px;background-position:-35px -10px} #europe2 .s1{top:383px;left:131px;width:9px;height:10px}
...
4

2 回答 2

1

使用此功能解决的问题:

  $("#menudroite li.menudroitepays a").hover(
   function(){
    var country=$(this).attr("id");
    $("#europe" + country + " a").addClass("active");
   },
   function(){
    var country=$(this).attr("id");
    $("#europe" + country + " a").removeClass("active");
   }
于 2010-08-06T19:09:16.040 回答
0

据我了解(Guess),您的问题是,当您将鼠标悬停在anchor标签上时,您的地图会变空。我认为您的问题可以通过在附加到之前克隆new_map&来解决new_bg#carteeurope li a

你的实际代码,

$("#menudroite li a").hover(function(){
    $(new_map).appendTo("#carteeurope li a");
    $(new_bg).appendTo("#carteeurope li a");
 });

我建议你在下面做一些事情,

$("#menudroite li a").hover(function(){
    var cache_new_map = new_map;  //cache the new_map 
    var cache_new_bg  = new_bg;   //cache your span
    $(cache_new_map).appendTo("#carteeurope li a");
    $(cache_new_bg).appendTo("#carteeurope li a");
 });

caching您的new_map&的原因new_bg是如果您要将源元素附加到其他元素,则元素将从其原始位置删除

PS:其实我不明白你的问题,我只是猜测上面可能是你的问题,如果你提供了一个在线演示(链接到你的工作页面),你可以从这个社区的人那里得到一个很好的答案。尽管您提供了一些HTMLCSS,但还不足以回答。因为很难猜测您的实际意图是什么。NO OFFENSE

根据我的理解(如果它符合你的问题)这个解决方案应该有效

于 2010-08-01T18:40:11.860 回答