【发布时间】:2013-01-05 16:15:18
【问题描述】:
此代码试图突出显示(通过添加“粗体”标签)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>
【问题讨论】:
-
像
<i>rss</i> feeds这样的案例呢? -
这是昨天发帖者的问题的重复,尽管表述可能更好。
-
或者更确切地说是stackoverflow.com/questions/14456079/…的副本
标签: javascript html highlight