为了账号安全,请及时绑定邮箱和手机立即绑定

js简单实现文本某个字加粗

标签:
Html5 JavaScript
<!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人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消