我在一个阵列中有一组按钮, 我想要它, 这样当您单击一个按钮, 以及它链接到的视频开始播放时, 它会解开按钮上的 < code> 点击 code> 键( 最好是您刚刚点击的那个按钮, 但我甚至不能让它为 < code>li code > 工作) 。
$("#myVid").bind("playing", function() {
//some stuff that happens
$("li", ".thumbs").unbind( playVideo() )
});
但它不起作用... 我在这里做错什么了? ( playVideo ()
是已经定义的函数)
the problem is that it s supposed to
unbind
only once the video is playing, hence the .bind("playing", function()...
. I can get it deactivate the list, but its before it should...