當鼠標懸停在DOM對象上時,是否有JavaScript或jQuery解決方案來重複運行函數(在setTimeout
之後)?否則說,有沒有JavaScript的「做鼠標懸停」(或「如果鼠標懸停」)?JavaScript/jQuery中的「if mouseover」或「do while mouseover」
$('someObject').bind('mouseover', function() {
//Do the following while mouseover
$('someOtherObject').css('margin-left',adjustedLeft + 'px');
setTimeout(/*do it again*/,25);
});
+1,試圖爲此寫一個解釋.. – 2010-10-19 07:59:22
+1清晰而簡單。 – jensgram 2010-10-19 08:01:15
哦,這很酷!太好了! – Kyle 2010-10-19 08:09:58