2012-05-27 110 views
1

我想建立一個文件瀏覽器,在點擊時顯示文件的相關信息。這個文件本身應該被加載到每個PHP的jwplayer中。JWPlayer的文件瀏覽器

我可以通過點擊文件以某種方式做到這一點? 還是應該使用JavaScript? (我試圖避免)

回答

2

通過listin創建一個文件瀏覽器,你想通過PHP outputing像列出所有文件:

<div id="player_container"></div> 
<a href="./files/file.mp4" onclick="playjw(this)" /> 
<a href="./files/file2.mp4" onclick="playjw(this)" /> 
<a href="./files/file3.mp4" onclick="playjw(this)" /> ect 

和功能

<script type='text/javascript'> 

var temp; 
var temphref; //these variables to get the href of the anchor back when opening 
       //another file so you could open the first file again 


function playjw(file) { 

var srcfile=file.href; 


juplayer('player_container').setup ({ 

'flashplayer': 'player.swf', 
'file': srcfile, 
'controlbar': 'bottom', 
'width': '470', 
'height': 320, 
'provider': 'http' 

}); 

return false; // this is required to not let the browser follow the link. 


} 
</script> 

改變自己如果有錯誤將ocour功能因爲我可能已經忘了東西

0

如果您想使用文件瀏覽器,請使用基於php/javasript的腳本。除非你有太多時間,否則不要試圖自己建造它。檢查http://www.gerd-tentler.de/tools/filemanager/http://encode-explorer.siineiolekala.net/explorer/index.php。網絡充滿了優秀的免費腳本。根據您想要如何使用jwplayer(audio?video?),您可以輕鬆創建播放文件的div(請參閱jw文檔)或創建播放文件的iframe。

最簡單的方法是爲所有以.mpg或.mp3結尾的文件創建一個onclick事件來創建div/iframe。

+0

謝謝,但我現在有太多時間了。我想自己建立它;) 我現在試圖通過使用$ _GET變量(我試圖避免)來解決它。 – Manticore