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を使用して、ある条件に基づいてsharepointのリッチテキストフィールドを読み取り専用にする方法を誰か教えてください。
ジャネット、重複に対する答えはあなたの質問に対するjQueryの答えを与えません。
私が使用したjQueryソリューションは、入力コントロールを非表示にし、その値をテキストとして表示することです。これは少し次のようになります。
var txtValue = $("input[title='MyTitle']").val(); $("input[title='MyTitle']").hide().after(txtValue);