0

我有一个 JavaScript 函数:

($('.expand').parent().next().children('li')).click(function() {
    $(this).css('background','#aaaaaa');
    window.location=($(this).children('a')).attr('href');    
  });

我在 ios 设备中获取背景颜色,但在三星 android 本机浏览器中无法使用。

有没有人遇到过这个问题。请指教。

已编辑

如果我使用

($('.expand').parent().next().children('li')).click(function() {
    $(this).css('background','#aaaaaa');
});

没有 window.location 我得到背景颜色,但我想要 bgcolor 和重定向

4

1 回答 1

0

使用背景颜色代替背景:

$(this).css({backgroundColor: '#aaaaaa'});

或者

$(this).css('background-color', '#aaaaaa');
于 2013-08-26T12:23:25.410 回答