我已經得到了以下JavaScript來創建視頻播放器的HTML。我使用Javascript,因爲這是我可以告訴玩家播放哪個視頻的唯一方式。Javascript的緩存視頻播放器
function createPlayer(videoSource){
document.writeln("<div id=\"player\">");
document.writeln("<object width=\"489\" height=\"414\" >");
document.writeln("<param name=\"player\" value=\"bin-debug/FlexPlayer.swf\">");
//etc
問題是FlexPlayer.swf每次都在加載,我需要緩存這個SWF文件。也許我應該使用Javascript構造函數,但不知道在這種情況下。任何代碼的幫助將不勝感激。
嗯,聽起來很有趣。但我應該如何緩存FlexPlayer。因爲點擊某個視頻鏈接後,彈性播放器每次都會初始化(白色加載條),這意味着它沒有被緩存。 – George