0

我使用此代码获取正文中所有节点的文本(浏览器是 IE8 它适用于 FF ...)

谢谢,我开发了一个工具栏来更改页面中的一些文本,所以如果你有任何其他解决方案会让我很高兴,如果我用正则表达式替换所有正文,它会禁用一些网站的未来。例如,在 facebook 中,如果使用替换所有建议未来将在朋友查找部分禁用,所以我想逐步更改单词,它是坏词的过滤器

function replaceText(node)
{
 var textPropName = node.textContent === undefined ? 'innerText' : 'textContent';
 var childs = node.childNodes, i = 0;
 while(i < childs.length)    
 {
 alert(childs[i][textPropName]);
   if (childs[i][textPropName] !=null)
    {
      childs[i][textPropName] =childs[i][textPropName].replace(rgx,'new');
    }
    else
    {
      replaceText(document.body.childNodes[i]);} i++; 
    }
 }
}

它可以工作,我可以替换页面上的所有文本,但是如果文本与 belove 相同,我无法访问它并替换它
问题: test5 ww tt xx测试不在任何标签中,因此它们不会替换任何解决方案? 真挚地

ww tt ff xx test5 test
<b>
test old old  yyyl  yyy ppp  
  <h2> ppp gfdsgfds gf dg df   yyy old odld old</h2>
</b>
  <h1 id="myHeader" onClick="replaceText(document.body)"> 
     yyy   yyy  yyy  yyy   old Click me! whatever
 </h1>
ppp  ppp ppp bwhoreface 
<b> 
ppp

最终解决方案

function replaceText(node){ 
var textPropName = node.textContent === undefined ? 'innerText' : 'textContent';
   var childs = node.childNodes, i = 0;
var len= node.childNodes.length;
// alert('len='+len);
//var rgx = new RegExp('\\bold\\b', 'gi');
   while(node = childs[i]){
//alert('ee'+node.nodeType);  
if (node.nodeType == 3  ) {
//alert('!!!!!'+node.nodeValue );
//alert('ee'+node.nodeType); 
childs[i].nodeValue = childs[i].nodeValue.replace(rgx, 'newText'); 
} else { 
   replaceText(node); 

}
4

2 回答 2

0

给你,这也适用于IE......

现场演示

function replaceText(node)
{
    var textPropName = node.textContent === undefined ? 'innerText' : 'textContent';
    var childs = node.childNodes, i = 0;
    var rgx = new RegExp('\\bff\\b|\\byyy\\b', 'gi');

    while(i < childs.length)    
    {
        if(childs[i].nodeType == 3) {
            alert(childs[i].nodeValue);

            childs[i].nodeValue = childs[i].nodeValue.replace(rgx,'new');
        } else {
            alert(childs[i][textPropName]);

            if (childs[i][textPropName] !=null)
            {
                childs[i][textPropName] =childs[i][textPropName].replace(rgx,'new');
            }
            else
            {
                replaceText(document.body.childNodes[i]);
            } 
        }

        i++; 
    }
}
于 2013-01-27T17:44:45.480 回答
0

使用content()属性:- 它获取匹配元素集中每个元素的子元素,包括文本和注释节点。

试试这个:

// in jquery
$("body").contents().filter(function() {
  return this.nodeType == 3;
}).replaceWith("hello");


// in javascript
var nodes = document.getElementsByName('body').childNodes
for (i=0; i < nodes.length; i++)
{
 if(nodes.childNode[i].nodeType == 3)
 {
 //THIS NODE IS A TEXT NODE OF THE BODY ELEMENT
 //DO WHAT YOU NEED WITH IT
 }
}

看这里链接

于 2013-01-27T18:08:55.180 回答