使HTML文本变为粗体

时间:2013-01-22 10:12:45

标签: javascript html bold

我编写了这个函数,它接受一个单词作为输入并将其放在<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()替换值,也会返回相同的内容。

修改 这是HTML和我正在研究的JS一起:

                <!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;

1 个答案:

答案 0 :(得分:5)

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

children[child].nodeValue= output; 

通过以下内容:

var newNode = document.createElement('span');
newNode.innerHTML = output;
document.body.replaceChild(newNode, children[child]);