0

我一直试图弄清楚这一点,但似乎无论我多么努力,我似乎​​都无法做到正确。我有一个带有星形坐标的地图视图。星星在悬停时会改变颜色,并在点击时打开一个链接。你如何设置背景颜色?(不是悬停颜色,我明白了。只是主要的。代码:

for (var country in onestar) {
    var obj = r.path(onestar[country].path);

    obj.attr(attributes);

    arr[obj.id] = country;



    obj
    .hover(function(){


    this.animate({
            fill: '#41464e'
        }, 300);
    }, function(){
        this.animate({
            fill: attributes.fill
        }, 300);
    })
    .click(function(){


    window.open('http://www.yahoo.com/')


    });

    $('.point').find('.close').live('click', function(){
        var t = $(this),
            parent = t.parent('.point');

        parent.fadeOut(function(){
            parent.remove();
        });
        return false;
    });


}

我尝试的一切都会出错。:(

4

2 回答 2

1

如果您使用的是jquery ui 1.9+ ,请尝试使用backgroundColor而不是fill

于 2012-10-26T15:47:50.147 回答
0
$('your selector').css('background-color','your color'); 

应该这样做。

http://api.jquery.com/css/

于 2012-10-26T15:40:56.077 回答