我正在尝试将jPlayer的当前卷保存到cookie中。这是我的代码。
//Save the jPlayer volume when it changes.
$("#startpage_jplayer").bind($.jPlayer.event.volumechange, function(event){
//Cache the volume value.
var new_volume = event.jPlayer.options.volume;
//Store the volume in a cookie.
$.cookie('jp_volume', new_volume, { expires: 7, path: '/'});
});
每次音量变化时,我都会发现没有选项属性。 我想他们搬了房子,但很难找到新的。
感谢您的时间。
答案 0 :(得分:0)
我在更新代码之前和之后使用了一些不推荐使用的事件检测方法,我的服务器在刷新它5次后没有清除缓存。
代码很好,问题解决了!