摘要: 废话不多说直接看代码JavaScript中的代码:1 var re = /src=\"([^\"]*?)\"/i;2 var arr = str.match(re);3 if (arr != undefined && arr.length > 0) {4 insertHtml = arr[1];5 }ASP.NET中获取方式: 1 /// 2 /// 获取字符串中img的url集合 3 /// 4 /// 字符串 5 /// 6 public static L... 阅读全文
posted @ 2014-03-18 20:19 学永不止步 阅读(5487) 评论(1) 推荐(0) 编辑