0

我希望在您不活动悬停图片时停止播放声音。最简单的方法是什么?提前致谢!

imgarr[i].onmouseout=function(){
    this.setAttribute('src',this.getAttribute('xsrc'))
            }
        })()
    }

在我的 jsfiddle 示例中更清楚地显示了,
http://jsfiddle.net/3tnGL/

希望你能理解。

塞巴斯蒂安

4

1 回答 1

0

这似乎工作正常

imgarr[i].onmouseout=function(){
    this.setAttribute('src',this.getAttribute('xsrc'))
    html5audio.pause()
}

我正在使用火狐

于 2013-05-11T15:29:56.777 回答