不同条件下突出显示颜色变化
当区域已经突出显示时,如何更改不同条件下的区域地图颜色?
这是我的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于初学者,请尝试将“colorToHightlight”替换为 colorToHighlight,以便调用之前命名的正确变量。
For starters, try replacing "colorToHightlight" with colorToHighlight so you call the correct variable that you named earlier.
类似于:
Jquery:
HTML:
Something like:
Jquery:
HTML:
我们使用 alt 属性来保存颜色。
HTML:
JS/JQuery:
其中“area1”是地图区域。
We used the alt attribute to hold the colour.
HTML:
JS/JQuery:
Where "area1" is the map area.