Created
May 15, 2016 05:57
-
-
Save nibocn/b3255b636dcfdb15715ba7ddd8e54329 to your computer and use it in GitHub Desktop.
http://www.xiamp4.com/ 站点资源 url 下载
This file contains 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
var jq = document.createElement('script'); | |
jq.src = "//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
// ... give time for script to load, then type. | |
jQuery.noConflict(); | |
function print_download_url() { | |
var text = '\n'; | |
$('div.ndownlist>ul>li input').each(function () { | |
text += $(this).val() + '\n' | |
// console.log('\n'); | |
}); | |
console.log(text); | |
} | |
print_download_url(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment