0
我知道Chrome不支持在選取框標記上顯示onfinish事件。 我決定在這裏使用JQuery插件:http://remysharp.com/2008/09/10/the-silky-smooth-marquee/ 在這篇文章中,作者說它可以捕獲停止事件。 如何,我不能使用它。請幫助我。如何在選取框中捕捉onstop
我知道Chrome不支持在選取框標記上顯示onfinish事件。 我決定在這裏使用JQuery插件:http://remysharp.com/2008/09/10/the-silky-smooth-marquee/ 在這篇文章中,作者說它可以捕獲停止事件。 如何,我不能使用它。請幫助我。如何在選取框中捕捉onstop
您應該爲stop事件調用.bind()。請參閱下面的示例代碼。希望能幫助到你。
$(document).ready(
function(){
$('div.demo').marquee('pointer')
.bind('stop', function() {alert($(this).text())})
.mouseover(function() {
$(this).trigger('stop');
//alert($(this).html());
}).mouseout(function() {
$(this).trigger('start');
}).mousemove(function (event) {
if ($(this).data('drag') == true) {
this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
}
}).mousedown(function (event) {
$(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
}).mouseup(function() {
$(this).data('drag', false);
})
});
我找到了這個問題的答案。 JQuery插件是大小寫敏感的。 所以行爲='滾動'是好的,行爲= SCROLL不好。 – teddy 2012-02-27 04:59:15