jQuery maphilight动态改变颜色

时间:2015-06-11 18:39:44

标签: javascript jquery css

我正在尝试动态更改maphilight的颜色。

reponse = JSON.parse(reponse);
$('area').each(function()  {
    $(this).attr('data-maphilight', '{"stroke":0, "fillColor":"CCFFCC", "fillOpacity":0.3, "alwaysOn":true}');
    // POUR LA CRÉATION DE BD, METS TOUS LES TERRAIN DANS COMMENTAIRES AVEC UN TYPE 1
    // $('#commentaireArea').val( ($('#commentaireArea').val().concat("('"+$(this).attr('id')+"', 1), \n")));   
            })  

  for (var i = 0; reponse.length > i; i++) {
        var test = '#'.concat(reponse[i].nomTerrain);
        $(test).attr('data-maphilight', '{"stroke":0, "fillColor":"FF0000", "fillOpacity":0.3, "alwaysOn":true}');
  }             
$('img[usemap]').maphilight();

这只能运作一次。当它第二次出现时,它并没有!它改变了CSS类,但不是maphilight!

1 个答案:

答案 0 :(得分:2)

Corect的方法是使用.data()而不是.attr()

                reponse = JSON.parse(reponse);

            $('area').each(function()  {
                $(this).data('maphilight', {"stroke":0, "alwaysOn": true, "fillColor":"CCFFCC", "fillOpacity":0.3})                 
                // POUR LA CRÉATION DE BD, METS TOUS LES TERRAIN DANS COMMENTAIRES AVEC UN TYPE 1
                // $('#commentaireArea').val( ($('#commentaireArea').val().concat("('"+$(this).attr('id')+"', 1), \n")));   
            })  

            for (var i = 0; reponse.length > i; i++) {
                var id = '#'.concat(reponse[i].nomTerrain);
                $(id).data('maphilight', {"stroke":0, "alwaysOn": true, "fillColor":"FF0000", "fillOpacity":0.3})
        }

工作正常。