2013-07-06 154 views
0

的作品,這是我使用了懸停在導航菜單物M代碼: 是否有人可以幫助我找到Chrome和IEjQuery的懸停不會在Chrome和IE瀏覽器,但在FF

問題
$("#unlock_nav a").hover(function() { 
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) +'_pink.png'); 

}, 

function(){ 
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) + '_white.png'); 
    }); 
+1

懸停在Chrome瀏覽器工作正常。 http://jsfiddle.net/FgRRH/ –

+0

鉻中的任何控制檯錯誤? – krishgopinath

+0

您能否提供頁面鏈接和/或html代碼?什麼切片()方法應該做的,到底是什麼?你想刪除href屬性的第一個字符? – sinisake

回答

1

你忘了在背景圖片url中放置緊箍。

試試這個:

$("#unlock_nav a").hover(function() { 
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) +'_pink.png)'); 

}, 

function(){ 
$(this).css('background-image', 'url(http://www.eileenfisher.com/ns/images/13f_m2/sbi_features/unlocked_season/but_' + $(this).attr('href').slice(1) + '_white.png)'); 
    }); 

樣品:http://jsfiddle.net/9nQdm/3/

+0

哇,你說得對。非常感謝,未知。不能相信我花了2天,看着這個......很好的幫助! – marb

相關問題