日期:2014-05-17 浏览次数:20575 次
var s = '<a title="标题" href="http://www.xxxx.com" target="_blank">标题</a><a href="http://www.xxxx.com">标题123</a>' var re = /<a.+?www\.xxxx\.com.+?>[^<]+?<\/a>/g; alert(s.match(re))
------解决方案--------------------
var url = "http://www\.xxxx\.com"; var regex = "<a[^>]*? href=(\"|')?"+ url +"\\1[^>]*>[^<]*<\\/a>" var oRegex = new RegExp(regex,"ig"); var html = "你的html"; var result; while(result = oRegex.exec(html)) { document.write(result[0]+"<br/>"); }
------解决方案--------------------
/<a\b[^>]*?href=(['\"]?)(https?:\/\/)?[^.]+\.xxxx\.com\1[^>]*?>[^<>]*<\/a>/gi
------解决方案--------------------
string existsReg=@"(?i)<a\b[^>]*?href=(['""]?)(https?://)?[^\.]+\.xxxx\.com\1[^>]*?>[^<>]*</a>";