2013-07-11 88 views
0

我使用Bootstrap編寫了一個響應式網站,我在桌面上的圖像上做了一個與jQuery的鼠標移動,但在Ipad上點擊這些圖像時,我的函數Mouseover工作,所以有一個錯誤。在Ipad上的jQuery鼠標移動

我想在我的ipad網站上這個函數Mouseover不會啓動。我如何做到這一點?

這是我的代碼:

$('.image a img').mouseover(function(){ 
    $(this).next().fadeIn(); 
    }); 

    $('.texte').mouseout(function(){ 
    $(this).fadeOut(); 
    }); 

回答

3

也許嘗試在此question

if(!navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/)) { 
    $('.image a img').mouseover(function(){ 
    $(this).next().fadeIn(); 
    }); 

    $('.texte').mouseout(function(){ 
    $(this).fadeOut(); 
    }); 
} 
+1

找到了答案,太感謝你了它工作得很好! :) – user2507113