使用jquery或JS如何将字符串转换为链接?

前端之家收集整理的这篇文章主要介绍了使用jquery或JS如何将字符串转换为链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我有一段看起来像这样的 HTML ……
  1. <p>This is some copy. In this copy is the word hello</p>

我想使用jquery将单词hello转换为链接.

  1. <p>This is some copy. In this copy is the word <a href="">hello</a></p>

这本身并不太难.我的问题是,如果这个词已经是一个链接,如下面的例子…

  1. <p>In this copy is the <a href="">word hello</a></p>

我不希望最终在链接中找到链接

  1. <p>In this copy is the <a href="">word <a href="">hello</a></a></p>

任何帮助将非常感激.

@H_404_19@解决方法
一个小正则表达式应该做的伎俩(更新,见下文):
  1. $(document).ready(function(){
  2. var needle = 'hello';
  3. $('p').each(function(){
  4. var me = $(this),txt = me.html(),found = me.find(needle).length;
  5. if (found != -1) {
  6. txt = txt.replace(/(hello)(?!.*?<\/a>)/gi,'<a href="">$1</a>');
  7. me.html(txt);
  8. }
  9. });
  10. });

小提琴:http://jsfiddle.net/G8rKw/

编辑:此版本更好:

  1. $(document).ready(function() {
  2. var needle = 'hello';
  3. $('p').each(function() {
  4. var me = $(this),found = me.find(needle).length;
  5. if (found != -1) {
  6. txt = txt.replace(/(hello)(?![^(<a.*?>).]*?<\/a>)/gi,'<a href="">$1</a>');
  7. me.html(txt);
  8. }
  9. });
  10. });

小提琴:http://jsfiddle.net/G8rKw/3/

再次编辑:这次,“hello”作为变量传递给正则表达式

  1. $(document).ready(function() {
  2. var needle = 'hello';
  3. $('p').each(function() {
  4. var me = $(this),found = me.find(needle).length,regex = new RegExp('(' + needle + ')(?![^(<a.*?>).]*?<\/a>)','gi');
  5. if (found != -1) {
  6. txt = txt.replace(regex,'<a href="">$1</a>');
  7. me.html(txt);
  8. }
  9. });
  10. });

小提琴:http://jsfiddle.net/webrocker/MtM3s/

猜你在找的jQuery相关文章