我有一个 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 和重定向