不同条件下突出显示颜色变化

发布于 2024-10-31 03:17:56 字数 640 浏览 2 评论 0原文

当区域已经突出显示时,如何更改不同条件下的区域地图颜色?

这是我的代码:

if(partyname = "Democrat")
{  
    var data = $('#MT').data('maphilight') || {fillColor:'ff0000'};
    data.alwaysOn = !data.alwaysOn;
    $('#MT').data('maphilight', data).trigger('alwaysOn.maphilight');   
}
 if(partyname = "Republican")
{   
    var data = $('#MT').data('maphilight') || {fillColor:'000000'};
    data.alwaysOn = !data.alwaysOn;
    $('#MT').data('maphilight', data).trigger('alwaysOn.maphilight');
}

我正在使用 jquery.maphighlight.min.js jQuery 插件来突出显示地图。

我的问题是该区域用第一个按钮以红色突出显示。如果我单击第二个按钮,同一区域会突出显示,但颜色无法更改(颜色应更改为黑色)。

How do I change the area map color for different condition when the area is already highlighted?

This is my code:

if(partyname = "Democrat")
{  
    var data = $('#MT').data('maphilight') || {fillColor:'ff0000'};
    data.alwaysOn = !data.alwaysOn;
    $('#MT').data('maphilight', data).trigger('alwaysOn.maphilight');   
}
 if(partyname = "Republican")
{   
    var data = $('#MT').data('maphilight') || {fillColor:'000000'};
    data.alwaysOn = !data.alwaysOn;
    $('#MT').data('maphilight', data).trigger('alwaysOn.maphilight');
}

I am using jquery.maphighlight.min.js jQuery plugin for highlighting the map.

My problem is that the area is highlighted by red color with the first button. If I click the second button, the same area is highlighted but the color cannot be changed (the color should be changed to black).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

瞳孔里扚悲伤 2024-11-07 03:17:56

对于初学者,请尝试将“colorToHightlight”替换为 colorToHighlight,以便调用之前命名的正确变量。

For starters, try replacing "colorToHightlight" with colorToHighlight so you call the correct variable that you named earlier.

半寸时光 2024-11-07 03:17:56

类似于:

Jquery:

var colorToHighlight = "black" //default

$("#color_options a").click(function (e)
{
    e.preventDefault(); //stop the anchor tag

    colorToHighlight = $(this).attr("id");
}

/*
    Do the highlight stuff

*/

HTML:

<div id="color_options">
    <a href="#" id="green">Green</a> - <a href="#" id="red">Red</a>
</div>

Something like:

Jquery:

var colorToHighlight = "black" //default

$("#color_options a").click(function (e)
{
    e.preventDefault(); //stop the anchor tag

    colorToHighlight = $(this).attr("id");
}

/*
    Do the highlight stuff

*/

HTML:

<div id="color_options">
    <a href="#" id="green">Green</a> - <a href="#" id="red">Red</a>
</div>
如梦亦如幻 2024-11-07 03:17:56

我们使用 alt 属性来保存颜色。

HTML:

<p><a href="#" class="aToggle" alt="37ee8d">Go GREEN</a></p>

JS/JQuery:

        $('.aToggle').click(function (e) {
            var data = $('#area1').mouseout().data('maphilight') || {};
            data.fillColor = $(this).attr('alt');
            $('#area1').data('maphilight', data).trigger('alwaysOn.maphilight');
        });

其中“area1”是地图区域。

We used the alt attribute to hold the colour.

HTML:

<p><a href="#" class="aToggle" alt="37ee8d">Go GREEN</a></p>

JS/JQuery:

        $('.aToggle').click(function (e) {
            var data = $('#area1').mouseout().data('maphilight') || {};
            data.fillColor = $(this).attr('alt');
            $('#area1').data('maphilight', data).trigger('alwaysOn.maphilight');
        });

Where "area1" is the map area.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文