如何在 JavaScript 中使用正则表达式删除 HTML 标签?
2024-09-30
92
正则表达式将标识 HTML 标签,然后使用 replace() 将标签替换为空字符串。假设我们有以下 HTML -
<html><head></head><body><p>The tags stripped...<p</body></html>
我们想用正则表达式删除上面的标签。为此,我们将创建一个自定义函数 -
function removeTags(myStr)
myStr 将包含我们要删除其标签的 HTML 代码 -
function removeTags(myStr) { if ((myStr===null) || (myStr==='')) return false; else myStr = myStr.toString(); return myStr.replace( /(<([^>]+)>)/ig, ''); }
对上述函数删除标签的调用是这样的 -
document.write(removeTags('<html><head></head><body><p>The tags stripped...<p</body></html>'));;
例
现在让我们看看完整的示例 -
<!DOCTYPE html> <html> <title>Strip HTML Tags</title> <head> <script> function removeTags(myStr) { if ((myStr===null) || (myStr==='')) return false; else myStr = myStr.toString(); return myStr.replace( /(<([^>]+)>)/ig, ''); } document.write(removeTags( '<html><head></head><body><p>The tags stripped...<p</body></html>'));; </script> </head> <body> </body> </html>
输出
更新于:3个月前赞一波!
相关文章
- 【说站】如何在mysql表中进行导入
- 【说站】javascript:void怎么解决
- 【说站】python如何在二维图像上进行卷积
- 【说站】SKlearn如何在python安装?
- 【说站】JavaScript垃圾回收的两种方法
- 【说站】JavaScript引发内存泄漏的情况
- 【说站】JavaScript同步和异步的介绍
- javascript 6种连接数组的方法和对比
- JavaScript中字典的常用操作
- 【说站】python Task如何在协程调用
- 【说站】filter在JavaScript中过滤数组元素
- 【说站】JavaScript使用map创建新数组
- 【说站】JavaScript for-in和for-of的不同点
- 【说站】JavaScript数组有哪些遍历方法
- 【说站】java如何在表格添加水印
- 【说站】python变量如何在作用域使用
- 【说站】Python如何在列表中添加新值
- 通过js修改tinymce的编辑器的内容
- 【说站】javascript判断变量相等的方法整理
- 【说站】javascript字符串类型的转换
文章评论
评论问答