⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 javascriptapi.js

📁 把所有文件上传空间即可 上传完请用 http://你的地址/index.htm 访问list.xml 添加歌曲 歌词 文件地址 有关设置和方法自己改下 基本不用改 上传就可以用 添添歌曲就完事了
💻 JS
字号:
//加载播放列表
function loadPlayList(listPath){
		window.document.S2Player.SetVariable("javaScriptAPI.playListPath",listPath);
		window.document.S2Player.TGotoLabel("javaScriptAPI","loadPlayList");
}
//将另一个播放列表加入到当前播放列表
function addPlayList(listPath,addTo){
		window.document.S2Player.SetVariable("javaScriptAPI.playListPath",listPath);
		window.document.S2Player.SetVariable("javaScriptAPI.addTo",addTo);
		window.document.S2Player.TGotoLabel("javaScriptAPI","addPlayList");
}

//将一组XML节点作为播放列表载入:data 为一个或几个XML节点,为字符串;firstRun 为第一个播放的音乐的位置,为数字
function loadMusicData(data,firstRun){
		window.document.S2Player.SetVariable("javaScriptAPI.musicData",data);
		window.document.S2Player.SetVariable("javaScriptAPI.firstRun",firstRun);
		window.document.S2Player.TGotoLabel("javaScriptAPI","loadMusicData");
}

//将一组XML节点加入到当前播放列表:data 为一个或几个XML节点,为字符串;addTo 为所要到的位置,为数字
function addMusicData(data,addTo){
		window.document.S2Player.SetVariable("javaScriptAPI.musicData",data);
		window.document.S2Player.SetVariable("javaScriptAPI.addTo",addTo);
		window.document.S2Player.TGotoLabel("javaScriptAPI","addMusicData");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -