2017-02-23 88 views
-1

所以我有發揮的無線電流的HTML5音頻播放器,但在刷新頁面或新頁面將停止播放並必須手動重新啓動,請記住,如果音樂播放器正在播放

我想知道我怎麼會讓它記住用戶是否點擊了遊戲?

一個律我谷歌,我發現這是做的餅乾,但我對餅乾一無所知,所以任何幫助將非常感謝!

+2

對不起造成衝突的人,我問的是如何和谷歌告訴我這是與餅乾我從來沒有問過專門爲基於cookie的解決方案 –

+0

@Paul:https://en.wikipedia.org/wiki/Web_storage #Client-side_interface –

+0

@PaulSmith感謝您的澄清,並對inappropri感到抱歉吃了論據。我建議你編輯你的問題,以澄清你不是在尋找一個必須使用cookies的解決方案。 – AmericanUmlaut

回答

1

與您澄清,你沒有專門找一個基於cookie的解決方案的意見,這個最好的解決辦法是使用localStorage的:https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage

的一種方式,你可以這樣做:

// When the music player starts 
window.localStorage.setItem("isPlaying", true); 

// When the music player stops 
window.localStorage.removeItem("isPlaying"); 

// When the page loads 
if (window.localStorage.getItem("isPlaying") { 
    // Trigger the music player to start 
} 
+0

這是一個很好的答案。 –

+0

@LightnessRacesinOrbit我爲我們以前的對話道歉。 – AmericanUmlaut

+0

真的沒有太多的交談,呃? ;)回到雅。 –