99资源 在线视频|美女人妻自慰淫叫|日韩欧美乱伦电影|超碰按摩国产超碰|av全球免费不卡|加勒比无码一区人妻|国产高清一区视频高清|一区二区三区精品伊人|无码加勒比人妻高清|久草中文在线一区蜜乳

HTML5如何實(shí)現(xiàn)網(wǎng)頁播放器

2012/8/17 17:49:04   閱讀:5444    發(fā)布者:5444

   HTML5網(wǎng)頁播放器,主要用到了audio標(biāo)簽,讀取本地文件用的是FileReader API(貌似僅支持Chrome)?! 】创a,html代碼就只需要audio標(biāo)簽、文件上傳按鈕:
  <audio autoplay="autoplay" controls="controls" src="badday.mp3" loop="loop">
  <source src="badday.mp3" type="audio/ogg">
  <source src="badday.mp3" type="audio/mpeg">
  Your browser does not support the audio tag.  </audio>
  <input id="fileurl" type="file" onchange="play()"/>
  function play(){try{    var file=document.getElementById('fileurl').files[0];    var reader = new FileReader();    reader.onload = (function(file) {        return function(e){            $("audio").attr('src',e.target.result);
  $("source").attr('src',e.target.result);        }    })(file);    reader.readAsDataURL(file); } }catch(e){   alert("同學(xué),該換瀏覽器啦?。?!");  }