用于图像映射的图像onClick事件的图像

时间:2015-12-22 04:26:04

标签: html image events onclick mapping

我为我正在映射的图像编写了一些代码。当我点击我在原始图像中映射[MAC 2311]的框时,我有一个onClick事件,我称之为一个函数,我想在原始框中添加图像,更具体地说是X我刚刚点击,但我的onClick事件无法正常工作。这是我的函数代码和完整代码的小提琴。点击标有MAC 2311微积分I的方框来测试我的onClick

<script type="text/javascript">


function myAction(where) { 
  var img = document.createElement("img");
  img.src = "http://i67.tinypic.com/2dvo8qp.jpg"; 
  img.height = 75; 
  img.width = 113;
  img.style.top=700;
  img.style.right=100;
  where.parentNode.appendChild(img);
}



</script>

https://jsfiddle.net/L04yjr88/

0 个答案:

没有答案