Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道这是否可能。我必须使用无法编辑并且从数据库中获取内容的自定义占位符。在数据库中有一些带有 html 标签的文本。我想消除这些标签,但我不会从数据库中消除它们。所以我必须从占位符内容中消除它们。
可能吗?
你可以试试这个代码
var regex = /(<([^>]+)>)/ig; var body = "<p>test</p>"; var result = body.replace(regex, ""); alert(result);