我加載一個頁面上有多個視頻的,多種視頻的不加載的所有視頻的Chrome
我的代碼片段是一樣的東西,
<div class="video_content left">
<span style="font-weight:bold">1</span>
<video width="213" height="120" controls class="video_tag">
<source src="<MY VIDEO SOURCE>" type="video/mp4" />
</video>
</div>
<div class="video_content left">
<span style="font-weight:bold">2</span>
<video width="213" height="120" controls class="video_tag">
<source src="<MY VIDEO SOURCE>" type="video/mp4" />
</video>
</div>
<div class="video_content left">
<span style="font-weight:bold">3</span>
<video width="213" height="120" controls class="video_tag">
<source src="<MY VIDEO SOURCE>" type="video/mp4" />
</video>
</div>
<div class="video_content left">
<span style="font-weight:bold">4</span>
<video width="213" height="120" controls class="video_tag">
<source src="<MY VIDEO SOURCE>" type="video/mp4" />
</video>
</div>
有時我會得到20 +視頻在一個頁面上,這樣我就可以創建很多視頻標籤。
每當我在我的本地主機上試用這段代碼時,它可以正常工作,但是如果我在遠程服務器上託管這段代碼,並嘗試只加載少量視頻,但在我的chrome inspect元素中沒有錯誤消息。
我試着用一段時間間隔使用jQuery重新加載視頻,那時候我會在chrome的Inspect元素中看到「臨時頭文件」的警告。
任何人都可以請幫我解決這個問題嗎?
在此先感謝。