js简单实现文本某个字加粗
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>曾经沧海难为水,除去巫山不是云 取次花丛懒回顾,半缘修道半缘君</div>
</body>
</html>
//方法1
function highLightCode0(node, keyworlds) {
var patt = new RegExp((keyworlds), "g")
//replace 传入函数 arguments[0] 是匹配到的内容
node.innerHTML = node.textContent.replace(patt, function() {
return "<strong>" + arguments[0] + "</strong>"
})
}
//方法2
function highLightCode1(node, keyworlds) {
var text = node.textContent;
node.textContent = null;
var patt = new RegExp(keyworlds, "g") var match, pos = 0;
while (match = patt.exec(text)) { //匹配词语的之前部分
node.appendChild(document.createTextNode(text.slice(pos, match.index))); //匹配词语
var strong = document.createElement("strong");
strong.appendChild(document.createTextNode(match[0]));
node.appendChild(strong);
pos = patt.lastIndex;
} //匹配词语的之后部分
node.appendChild(document.createTextNode(text.slice(pos)))}
new highLightCode(document.querySelector("div"), "半")
点击查看更多内容
2人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦