0

我错过了什么?我正在使用David Lynch maphilight 插件,并一直在将我的代码与此页面进行比较以进行故障排除,但两天后,我仍然遇到问题。当我将鼠标悬停在(甚至单击)映射图像的任何部分时,颜色不会显示。链接按预期工作。

我的脚本调用是:

   <head>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.maphilight.js"></script>
    <script type="text/javascript">$(function() {
        $('.AMGCmap1').maphilight();
    </script>
   </head>

img 和 map 代码是:

            <div>
                <img class ="map" id ="AMGCmap1" src="Images\AMGC Logo Big.png" alt="AMGC Logo" usemap="#AGMCmap" border="15">

                <map name="AGMCmap">
                    <area shape="poly" coords="61,432, 58,346, 71,285, 148,287, 164,345, 166,432" href="news.html"  title= "News" data-maphilight='{"strokeColor":"0000ff","strokeWidth":5,"fillColor":"ff0000","fillOpacity":0.6}' >
                </map>

            </div>

我尝试在函数中使用 img ID 和“'.map'”,但我没有看到任何区别。其他人有这样的问题吗?

我目前正在使用 Chrome,如果这有帮助的话。

4

1 回答 1

0
<img class ="map" id ="AMGCmap1" ...>

在这里,您有一个 id,同时您正在脚本中调用一个类。

$('.AMGCmap1').maphilight();

这可能是问题所在。将 HTML 中的 id 编辑为一个类:

<img class ="map AMGCmap1" ...>

或在脚本中调用 id:

$('#AMGCmap1').maphilight();

无论如何,即使我已经非常仔细地检查了我的脚本,我也遇到了同样的问题,如果你能在修复后让它工作,请告诉我。

于 2017-03-06T13:44:50.753 回答