Created
November 18, 2013 13:42
-
-
Save gyk001/7527953 to your computer and use it in GitHub Desktop.
获取verycd上所有的ed2k下载链接,
command+option+i ,粘贴到console里,回车,弹出框里就是所有链接,直接粘到迅雷里OK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
urls = ''; | |
$.each($('a[href^=ed2k]'),function(i,aa){ | |
urls = urls +$(aa).attr('href')+'\n'; | |
}); | |
alert(urls); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment