任何人都可以幫助我解決這個問題......我有一個按鈕,當它被徘徊時,觸發一個動作。但是,只要按鈕懸停,我想重複它。Javascript「while histed」loop
我會很感激的任何解決方案,無論是在jQuery的或純JavaScript - 這裏是我的代碼看起來是在這一刻(jQuery中):
var scrollingposition = 0;
$('#button').hover(function(){
++scrollingposition;
$('#object').css("right", scrollingposition);
});
現在我怎樣才能把這個變成某種while循環,以便#object將px移動到px,因爲#button是懸停的,而不僅僅是當鼠標進入它時?
存檔目的:選擇的答案在這裏是我需要什麼http://stackoverflow.com/questions/3966273/an-if-mouseover-or-a-do-while-mouseover-in- javascript-jquery – leticia 2014-03-13 20:21:27