我想播放声音onclick事件。我有一些代码,可以在Firefox和其他浏览器中播放声音,但不能在Safari中播放声音。
下面是代码。 Safari给我类似"thissound.Play" [undefined ] is not a function的错误。

function EvalSound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Play();
}

<embed src="namaste_london01(www.songs.pk).mp3" autostart=false width=0 height=0 name="sound1"
enablejavascript="true">

<a href="#" onClick="EvalSound('sound1')"> Play </a>

提前致谢。

最佳答案

jQuery有一些很棒的音频插件。这也意味着您可以摆脱讨厌的onclick属性,从而将所有JavaScript保留在script标记之间。

10-08 05:30