如何在选框中捕获停止

时间:2012-02-27 03:17:22

标签: html jquery-plugins

我知道Chrome不支持marquee标签上的onfinish事件。 我决定在这里使用JQuery插件:http://remysharp.com/2008/09/10/the-silky-smooth-marquee/ 在这篇文章中,作者说它可以捕获停止事件。 但是,我不能使用它。请帮帮我。

1 个答案:

答案 0 :(得分:0)

你应该为停止事件调用.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);
        })
    });