Last active
August 29, 2015 14:22
-
-
Save CaiJimmy/0296c3a2582c25491be9 to your computer and use it in GitHub Desktop.
七牛镜像地址替换
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
$('img[src^="https://nichijou.org/content/images"]').each(function(){ | |
var src = $(this).attr("src") | |
var newsrc = src.replace( 'https://nichijou.org', '//CDN-URL.qbox.me' ); | |
$(this).attr("src", newsrc ); | |
}) |
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
$('img[src^="/content/images"]').each(function(){ | |
var src = $(this).attr("src") | |
var newsrc = '//CDN-URL.qbox.me' + src | |
$(this).attr("src", newsrc ); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment