如何获取调用函数的id?

时间:2017-03-21 15:47:01

标签: javascript html css area

我正在尝试使用标记区域中不同ID调用时显示不同内容的函数。

我已经阅读了类似请求的答案,但我无法弄清楚我的错误。



function Over() {
      if (this.id == "cc") {
          el = document.getElementById("Box1")
          el.style.display = 'block';
      } else if (this.id == "mm") {
          el = document.getElementById("Box2")
          el.style.display = 'block';
      } else if (this.id == "ca") {
          el = document.getElementById("Box3")
          el.style.display = 'block';
      }
  }

  function Out() {
      if (this.id == "cc") {
          el = document.getElementById("Box1")
          el.style.display = 'none';
      } else if (this.id == "mm") {
          el = document.getElementById("Box2")
          el.style.display = 'none';
      } else if (this.id == "ca") {
          el = document.getElementById("Box3")
          el.style.display = 'none';
      }
  }

#Box1, #Box2, #Box3 {
    display: none;
    top: 250px;
    width: 20%;
    height: 100px;
    background-color: red;
    margin-left: 38%;
    position: absolute;
    border: solid;
    border-color: black;
    z-index: 100;
    border-radius: 10px;
    -moz-border-radius: 10px;
    /* firefox */
    -webkit-border-radius: 10px;
    /* safari, chrome */
    text-align: center;
}

#Box2 {
    top: 450px;
    width: 10%;
    height: 100px;
    background-color: green;
    margin-left: 18%;
}

#Box3 {
    top: 50px;
    width: 3%;
    height: 50px;
    background-color: yellow;
    margin-left: 0;
}

<img src="ticinello2.jpg" id="imgmap" alt="Mappa" usemap="#parkmap">
<map name="parkmap" id="map">
    <area shape="poly" coords="326,196,321,370,424,283,426,197" target="_blank" alt="polycc" href="#" onmouseover=Over.call(this) onmouseout="Out.call(this)" id="cc" />
    <area shape="poly" coords="426,198,554,458,457,553,328,404,324,404,324,375" target="_blank" alt="polymm" href="#" onmouseover=Over.call(this) onmouseout="Out.call(this)" id="mm" />
    <area shape="poly" coords="328,405,324,412,325,675,330,681,451,554" target="_blank" alt="polyca" id="ca" href="#" onmouseover="Over.call(this)" onmouseout="Out.call(this)" />
</map>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

按如下方式更改您的功能定义:

function Over(elm) { 
    // get id
    var elementId = elm.id;
}

然后,用法如下:

<area .... id="cc" onclick="Over(this);" />

以这种方式调用Over方法时,它将当前HTML元素作为参数传递。