web-dev-qa-db-ja.com

jQueryはHTMLページ内の文字列のすべての出現を置き換えます

文字列のすべての出現を別の文字列に置き換える必要があるプロジェクトに取り組んでいます。ただし、文字列がテキストの場合にのみ置換したいです。たとえば、これを有効にしたい...

<div id="container">
  <h1>Hi</h1>
  <h2 class="Hi">Test</h2>
  Hi
</div>

に...

<div id="container">
  <h1>Hello</h1>
  <h2 class="Hi">Test</h2>
  Hello
</div>

この例では、「Hi」はh2クラスとしての「Hi」を除き、すべて「Hello」に変換されました。私が試してみました...

$("#container").html( $("#container").html().replace( /Hi/g, "Hello" ) )

...ただし、これはHTML内のすべての "Hi"を置き換えます

21
Calebmer

この:

$("#container").contents().each(function () {
    if (this.nodeType === 3) this.nodeValue = $.trim($(this).text()).replace(/Hi/g, "Hello")
    if (this.nodeType === 1) $(this).html( $(this).html().replace(/Hi/g, "Hello") )
})

これを生成します:

<div id="container">
    <h1>Hello</h1>
    <h2 class="Hi">Test</h2>
    Hello
</div>

jsFiddleの例

17
j08691

素晴らしい結果:

function str_replace_all(string, str_find, str_replace){
try{
    return string.replace( new RegExp(str_find, "gi"), str_replace ) ;      
} catch(ex){return string;}}

覚えやすい...

9
Cyril Jacquart
 replacedstr = str.replace(/needtoreplace/gi, 'replacewith');

needtoreplaceは'で丸めないでください

//Get all text nodes in a given container
//Source: http://stackoverflow.com/a/4399718/560114
function getTextNodesIn(node, includeWhitespaceNodes) {
    var textNodes = [], nonWhitespaceMatcher = /\S/;

    function getTextNodes(node) {
        if (node.nodeType == 3) {
            if (includeWhitespaceNodes || nonWhitespaceMatcher.test(node.nodeValue)) {
                textNodes.Push(node);
            }
        } else {
            for (var i = 0, len = node.childNodes.length; i < len; ++i) {
                getTextNodes(node.childNodes[i]);
            }
        }
    }

    getTextNodes(node);
    return textNodes;
}

var textNodes = getTextNodesIn( $("#container")[0], false );
var i = textNodes.length;
var node;
while (i--) {
    node = textNodes[i];
    node.textContent = node.textContent.replace(/Hi/g, "Hello");
}

これは、「こんにちは」が単語の一部にすぎない単語にも一致することに注意してください。 "丘"。 Word全体にのみ一致させるには、/\bHi\b/gを使用します

1
Matt Browne

ここに行く=> http://jsfiddle.net/c3w6X/1/

var children='';

$('#container').children().each(function(){
    $(this).html($(this).html().replace(/Hi/g,"Hello")); //change the text of the children

    children=children+$(this)[0].outerHTML; //copy the changed child
});
var theText=$('#container').clone().children().remove().end().text(); //get the text outside of the child in the root of the element

$('#container').html(''); //empty the container

$('#container').append(children+theText.replace(/Hi/g,"Hello")); //add the changed text of the root and the changed children to the already emptied element 
0
Amin Jafari