提交 f6204507 编写于 作者: D david-hust
上级 bfd84c3b
var Grab_Kugou = {
version: 'grab.kugou',
patchDownload: function () {
$('.list-action-down').off('click').on('click', function () {
var $a = $(this),
idx = parseInt($a.parent().parent().parent().find('.musiclist-number').text(), 10),
playList = play.getPlayList();
if (!isNaN(idx) && idx > 0 && playList && idx <= playList.length) {
var song = playList[idx - 1];
play.getdatabyhash({
Hash: song.Hash,
album_id: song.album_id,
callback: function (res) {
if (res.data.play_url) {
var ext = res.data.play_url.split('.');
ext = '.' + ext[ext.length - 1];
// console.log(res.data.song_name + ext, res.data.play_url);
console.log(res.data.audio_name);
$a.attr({'href': res.data.play_url, 'target': '_blank', 'download': res.data.song_name + ext}).off('click');
}
}
});
}
event.stopPropagation();
});
}
}
if (!$ || !play) alert('script version unmatch!');
else Grab_Kugou.patchDownload();
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册