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プラグインは大文字小文字を区別します。 Behavior = 'scroll'は正常です。behavior = SCROLLはOKではありません。 – teddy