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.
Chrome/Safari 支持 css:
-webkit-user-modify:read-write-plaintext-only ,可以禁止用户将富文本粘贴到内容可编辑的 div 中。
我不知道如何在 Firefox 和 IE 中获取它。
我相信您可以将 -moz 前缀用于 firefox
-moz-user-modify: read-write-plaintext-only;
对于 IE (10+),您可以使用 -ms 前缀
-ms-user-modify: read-write-plaintext-only;
添加它而不添加前缀以供将来打样也是合适的;)
user-modify: read-write-plaintext-only;