0
過去幾個小時,我用這個html5視頻標籤打破了我的頭。 我檢查了這個網站的答案,沒有任何適合我的作品。適用於Android手機的HTML5視頻標籤
我想加載andriod手機版本2.3及以上的視頻文件。 任何幫助將高度讚賞。 我把代碼從這個網址: HTML5 Video Javascript
我的JavaScript函數:
<script type="text/javascript">
function PlayVideo() {
new_video = document.createElement('video');
new_video.setAttribute('scr', 'Work.mp4');
window.onload = function() { new_video.play(); }
//new_video.play();
}
</script>
我的HTML
<input type="button" onclick="PlayVideo()" value="Play2" />
請幫助我的代碼。 還有一個問題,將和andriod版本2+支持HTML5視頻標籤?
感謝 阿里漢
只是想確保PlayVideo函數的第二行是一個拼寫錯誤(特別是試圖設置scr屬性而不是src屬性)。 – natlee75 2012-07-11 17:35:34