次のような JavaScript 関数があります。
($('.expand').parent().next().children('li')).click(function() {
$(this).css('background','#aaaaaa');
window.location=($(this).children('a')).attr('href');
});
iOS デバイスで背景色が表示されますが、samsung android ネイティブ ブラウザでは機能しません。
誰かがこの問題に遭遇しましたか。ご意見をお聞かせください。
編集済み
私が使用する場合
($('.expand').parent().next().children('li')).click(function() {
$(this).css('background','#aaaaaa');
});
window.location なしで背景色を取得していますが、bgcolor とリダイレクトの両方が必要です