0

我有一个带有各种图像映射的图像,例如:

<map id="rade_img_map_1335199662212" name="rade_img_map_1335199662212">
<area href="http://" coords="10,10,160,47" shape="RECT" /></map>

如何使用 jquery 将内联样式添加到我的 ul li

<ul id="level3">
<li>Test</li>
<li>rwer</li>
<li>wer</li>
<li>sdf</li>

因此,如果上面的图像映射是针对Test我如何在悬停时触发 jquery 的?如果我为每个图像映射设置href,那么我可以使用jquery读取值吗?

编辑我已经尝试过了,但是当不悬停时我无法删除该类:

  $(document).ready(function () {
      $("#rade_img_map_1335199662212").hover(function () {
          $("li#rs1").removeClass("active");  //Make sure no other "active" classes exist
          $(this).addClass("active");  //Add the active class to the area that was clicked
      });
  });
4

0 回答 0