在正文中搜索字符串,然后搜索样式



我需要使用jQuery搜索文档以找到特定的单词。它实际上是一个品牌名称,无论在哪里使用,都必须是粗体和斜体。

我可以使用:contain来做到这一点,但只能基于单个元素。我需要能够通过锚,列表div等

$( "a:contains('brand name')" ).html().replace('brand name'.... 

任何想法都将不胜感激。

更新:我已经走到了这一步,它可以替换页面上的所有内容,但我现在需要用一个类来封装一个跨度。距离如此之近,但却被这一次难住了。再次提出一个想法将不胜感激。

    $("body *").contents().each(function() {
  if(this.nodeType==3){
    this.nodeValue = this.nodeValue.replace(/brandname/g, 'colour');
  }
});

您可以用文档片段替换textNodes。这允许您对文本和样式节点进行分组,并将其与现有的textNode进行交换。

var x = 0;
$("body *").contents().each(function() {
   if (this.nodeType == 3 && this.parentElement.tagName != "SCRIPT") {
     var text = this.nodeValue;
     var i = 0, lastIndex = 0;
     var search = /brandname/ig;
     var result;
     var parent = this.parentNode;
     var textNode = null;
     var highlight = null;
     var textRange = "";
     var fragment = document.createDocumentFragment();
     // Do search
     while ((result = search.exec(text)) !== null) {
    
       // add plain text before match
       textRange = text.substring(lastIndex, result.index);
       if (textRange != '') {
         textNode = document.createTextNode(textRange);
         fragment.appendChild(textNode);
       }
       
       // add highlight elements
       highlight = document.createElement('span');
       highlight.innerHTML = result[0];
       highlight.className = "hi";
       fragment.appendChild(highlight);
       lastIndex = search.lastIndex;
     }
     // Add trailing text
     textRange = text.substring(lastIndex);
     if (textRange != '') {
       textNode = document.createTextNode(textRange);
       fragment.appendChild(textNode);
     }
     
     // Replace textNode with our text+highlight
     if(fragment.children.length > 0) {
       this.parentNode.replaceChild(fragment, this);
     }
   }
 });
span.hi {
  background-color: #FFCC00;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
  Hello world this is my brandname. The BrAnDNAMe is regex matched and we can change subelements like "<a href=''>Brandname</a>." It should not replace <b>elements</b> that don't match.
</p>

$.fn.ignore = function(sel){
  return this.clone().find(sel||">*").remove().end();
};
function rebrand(el, word){
  if (!word.length && !el) return;
  var $el = $(el), html = $el.ignore("script").html(),
      rgx = new RegExp("(?![^<]+>)("+ word +")", "g");
  $el.html( html.replace(rgx, "<span class='brand'>$1</span>") );
}
$(function() { // DOM ready
  // !!!  IMPORTANT: REBRAND FIRST !!!
  rebrand("body", "Brand Name");
  // so the following code will not break on lost events, data bindings etc...
  // Other DOM ready code here like:
  $("button").click(function(){ $(this).css({color:"red"}); });
  
});
// Other JS, jQ code here...
.brand{
    color: rgba(255,0, 100,0.4);
    font: italic normal bold 1em/1 sans-serif;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
  <h1>Title with Brand Name!</h1>
  <p>
    Change styles only to Brand Name!<br>
    but don't mess with <a href="#">links to Brand Name are cool</a><br>
    <button>Button with Brand Name works!</button>
  </p>
  <ul>
    <li>Other Brand</li><li>Brand Name</li><li>Brandy</li>
  </ul>
</div>
<div>
  <h2>Subtitle <i>and italic Brand Name</i></h2>
  <p>The HTML will not get messed cause of Brand Nameing<br>
  Paragraph with a &lt;b&gt; tag <b>bold Brand Name actually</b></p>
  <code>This is a code tag with a Brand Name :)</code>
</div>

这两个答案值得称赞:
jQuery.ignore插件
高亮显示单词(忽略HTML标记的名称)

如果您的代码有效,只需添加类似的代码行:

this.nodeValue.wrap( "<span class='new'></span>" );
var rgx_BRAND = /(foo)/ig;
$("*")
    .contents()
    .filter(function() {
        return this.nodeType === Node.TEXT_NODE && this.textContent.search(rgx_BRAND) > -1;
    })
    .each(function(){
        var html = this.textContent.replace(rgx_BRAND, '<b class="-my-brand">$1</b>');
        $(this).before(html).remove();
    });

希望这能有所帮助,为干杯

我的解决方案与前一个有点不同,但我认为在任何情况下都是有效的。

在下面我的jQuery函数中:

function replaceBrand(brandName) {
    $('body').find(":not(iframe)").contents().filter(function(index, element) {
    if (element.nodeType == 3 && element.nodeValue.indexOf(brandName) != -1) {
        var newInnerValue = element.nodeValue.replace(brandName, '<div><span class="brand">' + brandName + '</span></div>');
        $(element).replaceWith(newInnerValue);
    }
});

}

replaceBrand("品牌名称"、"新品牌");

从您的代码片段开始:

$(function() {
    var parent, needle = 'brandname',
        regex = new RegExp(needle, 'g');
    $("body *").contents().each(function() {
        if(this.nodeType==3 && ((parent = $(this.parentNode)).length > 0) {
            parent.html(parent.html().replace(
                regex, '<span class="brand-name">' + needle + '</span>'));
        }
    }
});

这可能不是最有效的方法,但相当容易,在我的测试中完成了这项工作。查找parentNode属性应该可以在所有浏览器中使用。

相关内容

  • 没有找到相关文章

最新更新