用…替换()或wrap()http://name.tld/request_url?参数?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用…替换()或wrap()http://name.tld/request_url?参数?相关的知识,希望对你有一定的参考价值。

我有更好的方法来替换/包装h*tp://name.tld/request_url?parameterh*tps://name.tld/request_url?parameter文本在某些某些html元素与<a href>

这是我的代码:

jQuery('#posts .post').each(function() {
  elem = jQuery(this);
  elem.html(
    elem.text()
    .replace(/(http?://?S+)/g, "<a href='$1'>$1</a>")
  );
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="posts">
  <div class="post">
    Tweet text 1 http://google.com and other text.
  </div>
  <div class="post">
    Tweet text 2 https://www.google.com and other text.
  </div>
  <div class="post">
    Tweet text 3
  </div>
  <div class="post">
    ...
  </div>
</div>

任何jQuery.wrap()替代品都会很好。

答案

没有更好的方法,虽然你可以简化它,如下所示:

jQuery('#posts .post').each( function () {
  jQuery(this).html(function(i, html) {
    return html.replace(/(http?://?S+)/g, "<a href='$1'>$1</a>");
  }); 
});

只有当您确信帖子中不包含HTML时才使用此方法,否则请使用您拥有的内容。

jQuery适用于DOM节点,而不是节点内的文本,或者更确切地说它是因为它只是javascript ...但它没有提供很多额外的功能。 jQuery,包括.wrap(),专注于DOM操作,而不是文本。

以上是关于用…替换()或wrap()http://name.tld/request_url?参数?的主要内容,如果未能解决你的问题,请参考以下文章

python wraps

DOM——拷贝.clone()与替换.replaceWith() 和.replaceAll()及包裹.wrap()

如何在替换角色之前重复捕获

使用grepl替换每个匹配的字符串时,如何简化以下代码?

LD_PRELOAD和ld --wrap

NGUI中UILabel用省略号替换超出显示区域的内容