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.
因此,我从 Sharepoint 的讨论列表中提取内容并将其放到新表单的 RTE 文本区域中。一切都很好,除了它将所有内容加上所有 html 标签放在文本区域中,我想要的只是文本。
如何在不弄乱文本区域样式的情况下删除 html 标签。
var html = '<div class="blue">This is blue text</div>'; $(html).text(); //will strip the html tags and return only the text.
html textarea 无法识别 html 标签。你需要一个 javascript 插件来做到这一点。