私は私の見解でこのコードを持っています
<a href="#SampleEditor" onclick="javaScript:ShowSampleEditor()"
id="SampleLink">Add Sample</a>
<div class="editor-field" id="SampleEditor" style="display: none">
<div class="editor-label">
@Html.LabelFor(model => model.SampleCollectionInstructions)
</div>
<div class="editor-field">
@Html.TextAreaFor(model => model.SampleCollectionInstructions, new { @class = "adminRichText" })
@Html.ValidationMessageFor(model => model.SampleCollectionInstructions)
</div>
</div>
リッチ テキスト エディターを開くためのリンクをユーザーに提示し、リンクを非表示にします。
これは私が使用するコードです
function ShowSampleEditor() {
$("#SampleEditor").show();
$("#SampleLink").hide();
}
そして今、私はさらに数人の編集者のためにこれをしなければなりません. Json は本当に私のものではないので、複数のエディターに対してこれを行う汎用関数を作成するにはどうすればよいですか?