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 2007 中禁用富文本框
有人请让我知道如何使用 jquery 根据某些条件使共享点富文本字段只读。
珍妮特,重复的答案并没有给你一个 jQuery 回答你的问题。
我使用的一个 jQuery 解决方案是隐藏输入控件并将其值显示为文本。看起来有点像这样:
var txtValue = $("input[title='MyTitle']").val(); $("input[title='MyTitle']").hide().after(txtValue);