gpt4 book ai didi

javascript - 使用javascript在正文中加粗文本

转载 作者:可可西里 更新时间:2023-11-01 13:13:48 26 4
gpt4 key购买 nike

此代码试图突出显示(通过添加“粗体”标记)HTML 正文中的某些字符。 (这些在JS函数中指定)但是,我没有将文本变为粗体,而是在呈现的 html 页面中得到了“粗体”标签。

虽然我想要一些类似的东西

这是一条测试消息

我明白了

This is a test <b>message</>

任何帮助都会很棒。

    <!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="abcd"/>

These words are highlighted: knorex, edge, rss feeds while these words are not: knewedge, abcdef, rss feedssss

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

最佳答案

问题是您将 HTML 放入文本节点,因此它被严格地作为文本进行评估。一种简单的解决方法是简单地对 body 元素的 innerHTML 进行操作,如下所示:

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

<script>

function myFunction(){
var highLight = ['abcd', 'edge', 'rss feeds'],
contents = document.body.innerHTML;

for( i = 0; i < highLight.length; i++ ){
contents = delimiter(contents, highLight[i]);
}

document.body.innerHTML = contents;
}

function delimiter(input, value) {
return 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="abcd"/>

These words are highlighted: knorex, edge, rss feeds while these words are not: knewedge, abcdef, rss feedssss

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

关于javascript - 使用javascript在正文中加粗文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14458453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com