我正在研究富文本编辑器,到目前为止做得很好。我制作了一个单独的.js
文件以将其用作插件。
现在我想通过文件给它一个类名来使用这个插件。但.cshtml
它似乎不起作用,我已经搜索了相关答案,他们说使用document.getElementsByClassName
将解决我的问题。
请仔细阅读这段代码并告诉我出了什么问题?
文本编辑器 .js -
var richTextEditor = document.getElementsByClassName("text-editor");
richTextEditor.contentDocument.designMode = 'ON';
$('#strong').live('click', function () {
richTextEditor.contentDocument.designMode = 'ON';
richTextEditor.contentDocument.body.contentEditable = true;
richTextEditor.contentDocument.execCommand('bold', false, null);
richTextEditor.focus();
});
cshtml 文件——
<script src="/js/Texteditor.js" type="text/javascript"></script>
<script src="/js/jquery.js" type="text/javascript"></script>
<div id="strong" class="command btn"><i class="icon-bold icon-black"></i></div>
<iframe id="edtNoteCreate" class="text-editor" name="DisplayNote" style="width:430px;height:150px;">@((Model.Note != null ? Model.Note : ""))</iframe>