Javascript - 如何删除链接中的链接

时间:2011-05-16 06:52:27

标签: javascript regex hyperlink linkify

假设一个字符串包含<a href="http://google.com">http://google.com</a>。当我链接整个字符串(包含未链接的网址和链接的网址,如上所示)时,它将变为<a href="<a "" href="http://google.com"">http://google.com"</a>>http://google.com</a>

有没有办法可以将错误的链接(链接前已链接的链接)还原回<a href="http://google.com">http://google.com</a>

我在WordPress中发现它使用$ret = preg_replace("#(]+?>|>))]+?>([^>]+?)#i", "$1$3", $ret);(在wp-includes / formatting.php中)来完成此任务。有人可以帮助我在JavaScript中执行此操作吗?

1 个答案:

答案 0 :(得分:0)

看看这个http://jsfiddle.net/mplungjan/V5Qca/

<script>
function linkify(id,URL) {
  var container = document.getElementById(id);
  var links = container.getElementsByTagName("a");
  if (links.length ==0) {
    container.innerHTML=container.innerHTML.link(URL);
    return;
  }
  var nodes = container.childNodes;
  for (var i=nodes.length-1;i>=0;--i) {
    if (nodes[i].nodeType ==3 && nodes[i].parentNode.nodeName!="A") {
      var link = document.createElement("a");
      link.href=URL;
      link.innerHTML=nodes[i].nodeValue;
      container.replaceChild(link, nodes[i]);
    }
  }
}
window.onload=function() {
  linkify("div1","http://www.google.com/");
}
</script>
<div id="div1">
this is a <a href="test">test</a> of replacing text with links with <a href="#">linkified</a> content
</div>