JS去掉所有的html标签

2024.01.02 07:52

源码分享

Javascript通过正则去掉所有的html标签,提取出纯文本信息,直接上方法:

const html = '<p style="width: 100px">您好<span>Iwecore</span></p>'

delHtmlTag(str) { 
	return str.replace(/<[^>]+>/g, ""); 
}
			
console.log(delHtmlTag(html))  // 输出 您好Iwecore


若有收获,就给个鼓励吧

我要:
蜀ICP备2024070963号Iwecore © 2020-2024. All Rights Reserved.