js 获取文本中的图片src并替换图片src
我提供一点例子数据vartext="<pstyle="background-color:#ffffff;text-indent:0px;color:#333333;"><...
我提供一点例子数据
var text = "<p style="background-color:#ffffff;text-indent:0px;color:#333333;">
<img style="width:666px;height:402px;" alt="" src="/admin/kindeditor/attached/image/20140504/20140504080935_30878.jpg" width="673" height="402" /></p><p style="background-color:#ffffff;text-indent:0px;color:#333333;">
<img style="width:666px;height:402px;" alt="" src="/admin/kindeditor/attached/i04/20140504080935_30878.jpg" width="673" height="402" /></p>
";
需要操作的就是获取这段数据中的img的src 然后在src前面添加http://www.nmgjzw.com
说白了就是更改src 展开
var text = "<p style="background-color:#ffffff;text-indent:0px;color:#333333;">
<img style="width:666px;height:402px;" alt="" src="/admin/kindeditor/attached/image/20140504/20140504080935_30878.jpg" width="673" height="402" /></p><p style="background-color:#ffffff;text-indent:0px;color:#333333;">
<img style="width:666px;height:402px;" alt="" src="/admin/kindeditor/attached/i04/20140504080935_30878.jpg" width="673" height="402" /></p>
";
需要操作的就是获取这段数据中的img的src 然后在src前面添加http://www.nmgjzw.com
说白了就是更改src 展开
推荐于2016-06-23
展开全部
<script>
(function(){
var imglist=document,getElementsByTagName("img");
for(var i=0;i<imglist.length;i++){
imglist[i].src="http://www.nmgjzw.com"+imglist[i].src;
}
})()
</script>
(function(){
var imglist=document,getElementsByTagName("img");
for(var i=0;i<imglist.length;i++){
imglist[i].src="http://www.nmgjzw.com"+imglist[i].src;
}
})()
</script>
追问
如果这样的话就会替换整个页面的图片了,有没有方法只更改这个内容的img
追答
var text=text.replace("src=\"","src=\"http://www.nmgjzw.com")
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询