请注意,它在输入类型" text"或" textarea"但是在申请summernote编辑/ ck编辑时,它的工作没有成功
请在我的summernote编辑器或ckeditor
中流动该链接实际上我需要这个[http://imankulov.github.io/asuggest/][1] 或 [http://atmb4u.github.io/AutoJS/][2]
我的js代码是:
function showTemplateFrom(){
var ajaxURL = "getTemplateFromOtNote.do";
$.ajax({
url : ajaxURL,
success : function(result) {
$("#dashbordDataDiv").html(result);
}, complete:function (){
$('.summernote').summernote({
height: 300, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null
});
$('.modal.aside').ace_aside();
// asuggest
var suggests = ["hello", "world" , "doctor" , "document"];
$("#otTemplateValue").asuggest(suggests);
//For Ckeditor
var oTextbox = new AutoSuggestControl("text-area");
}
});
}
我的HTML代码是:
<div class="col-xs-12">
<label for="">OT Note Editor</label>
<div class="summernote" id="otTemplateValue" style="z-index: -99999"></div>
<p><textarea id="text-area" class="ckeditor" rows="2" cols="50"> </textare></p>
</div>
答案 0 :(得分:1)
我相信这个方法应该适用于任何输入字段。关键是
spellcheck="true"
和spellcheck="false"
和autosuggest。
autocomplete="off"
和autocomplete="on"
<!-- spellcheck everything! -->
<input type="text" spellcheck="true" autocomplete="on"/><br />
<textarea spellcheck="true"></textarea>
<div contenteditable="true" spellcheck="true">I am some content</div>
<!-- spellcheck nothing! -->
<input type="text" spellcheck="false" /><br />
<textarea spellcheck="false"></textarea>
<div contenteditable="true" spellcheck="false">I am some content</div>
请注意,可以在用户的浏览器设置或他们选择的第三方应用中关闭或启用这些功能。所以对访问者来说,没有什么是强制性的。