我有以下jquery代碼,它可以在Firefox和safari中正常工作,但不在Chrome中。jquery和鉻問題
基本上我只是想下面的代碼運行在頁面加載時:
$("ul#menu-master_menu li ul li a span.sf-sub-indicator:first-child").remove();
出於某種原因,我不能得到這個工作,所以我將它設置爲下面的圖像負荷運行:
$(window).load(function() {
$("#logoLoader").load(function(){
$("ul#menu-master_menu li ul li a span.sf-sub-indicator:first-child").remove();
}).attr('src', 'http://localhost/wordpress/wp-content/themes/volumes/images/logo.png');
});
這不適用於chrome。任何人都可以請我提供一個解決方案或解釋爲什麼它不適用於鉻。正如我提到我只是需要這行代碼來運行:
$("ul#menu-master_menu li ul li a span.sf-sub-indicator:first-child").remove();
感謝
顯示你的HTML或做出小提琴 –
什麼Chrome瀏覽器版本? – tyler
有沒有原因你不使用'.ready':http://api.jquery.com/ready/? –