How to stop audio played by audio tag of HTML5

前端 未结 2 1741
既然无缘
既然无缘 2021-02-13 04:16

I am new to HTML5 and I am exploring HTML5 features. There I came across audio tag.
I written code with it to play sound files.
I am having one problem with this tag. O

2条回答
  •  孤城傲影
    2021-02-13 04:43

    Try this:

      try
      {
           if(MyAudio != undefined)
           {
              MyAudio.pause();
           }
           MyAudio = new Audio("filename");
           MyAudio.play();
      }
      catch(v)
      {
        //alert(v.message);
      }
    

提交回复
热议问题