1

我编写了这个函数,它接受一个单词作为输入并将它放在一个<b>标签中,以便在 HTML 中呈现时它会是粗体的。但是当它真的被渲染时,这个词不是粗体,而是只有<b>标签围绕着它。

这是功能:

function delimiter(input, value) {
    return input.replace(new RegExp('(\\b)(' + value + ')(\\b)','ig'), '$1<b>$2</b>$3');
}

在提供值和输入时,例如“消息”和“这是一条测试消息”:

输出是:This is a test <b>message</b>
期望的输出是:This is a test message

即使将值替换为value.bold(), 也会返回相同的结果。

编辑 这是我正在处理的与 JS 一起的 HTML:

                <!DOCTYPE html>
            <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
            <head>
            <title>Test</title>

            <script>

            function myFunction(){
                var children = document.body.childNodes;
                for(var len = children.length, child=0; child<len; child++){
                 if (children[child].nodeType === 3){ // textnode
                    var highLight = new Array('abcd', 'edge', 'rss feeds');
                    var contents = children[child].nodeValue;
                    var output = contents; 
                    for(var i =0;i<highLight.length;i++){
                        output = delimiter(output, highLight[i]); 
                    }

                                children[child].nodeValue= output; 
                }
                }
            }

            function delimiter(input, value) {
                return unescape(input.replace(new RegExp('(\\b)(' + value + ')(\\b)','ig'), '$1<b>$2</b>$3'));
            }
            </script>



            </head>
            <body>
            <img src="http://some.web.site/image.jpg" title="knorex"/>

            These words are highlighted: abcd, edge, rss feeds while these words are not: knewedge, abcdefgh, rss feedssss

            <input type ="button" value="Button" onclick = "myFunction()">
            </body>
            </html>

我基本上得到了分隔符函数的结果并更改nodeValue了子节点的结果。

我收回函数返回给我的内容的方式是否可能有问题?

这就是我所做的:

children[child].nodeValue = output;
4

1 回答 1

5

您需要将标记作为 HTML 处理,而不是仅仅设置为替换文本节点中的现有内容。为此,替换语句

children[child].nodeValue= output; 

通过以下方式:

var newNode = document.createElement('span');
newNode.innerHTML = output;
document.body.replaceChild(newNode, children[child]); 
于 2013-01-22T13:34:51.637 回答