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.
我将如何强制在内容可编辑的 div 中设置字体格式,例如,如果用户将斜体或粗体文本粘贴到我的 div 中,我如何使其不以斜体或粗体显示文本,而仅以正常的非格式化显示文本?
我想保留标签和空格。
你需要 JavaScript 或 jQuery 来做到这一点。这是一个jQuery解决方案:
$('[contenteditable]').on('blur keyup paste', function() { $(this).html($(this).text()); });
jsFiddle 示例。