技术宅

当前位置:首页 > 网站教程 > 代码学习

代码学习

将页面图片前缀换成指定地址代码

时间:12-11 作者:
将页面图片前缀换成指定地址代码

window.onload = function() { var contentText = document.getElementById("contentText"); if (contentText) { contentText.innerHTML
将页面图片前缀换成指定地址代码

window.onload = function() { var contentText = document.getElementById("contentText"); if (contentText) { contentText.innerHTML = contentText.innerHTML.replace(/<img\b[^>]*?\bsrc=["']\\\/d\\\/file\\\/[^"']*["']/gi, function(match) { return match.replace(/src=["']\\\/d\\\/file\\\//g, 'src="http://www.guimi.one/d/file/'); }); } };

使用得时候给代码里地址换成你得。