2013-06-24 60 views
1

的jwplayer網站建議您嵌入jwplayer內的JavaScript是這樣的:集成JW球員與ASP.NET

jwplayer("videoDIV").setup({ 
        file: "vid.flv", 
        height: 300, 
        width: 400, 
        //Etc... 

然而,當我嘗試在ASP.NET我得到

Uncaught TypeError: Cannot call method 'setup' of null

我應該可以像調用變量一樣調用jwplayer,只要我有<script src...的東西,它應該是可訪問的,對吧?


的錯誤出現在jwplayer("videoDIV").setup({

回答

1

我發現爲什麼會這樣。

當你打電話給jwplayer(string)setup()時,那裏的字符串需要在你的html中被這個名字命名爲div。

+0

很高興你有這個工作! – emaxsaun