Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实现了jplayer播放列表,因为它会在第一首歌曲完成时移至下一首歌曲。
但问题是,我不希望歌曲名称显示在我的页面上。
如果我删除这段代码:
<div class="jp-playlist"> <ul> <li></li> </ul> </div>
播放器不会自动播放,需要转到第 2 首歌曲才能正常播放。我希望它在页面加载时自动播放,在此先感谢。
就在你的 jplayer 初始化之后,而不是删除,你为什么不把它隐藏起来:
$('.jp-playlist').hide();