gpt4 book ai didi

javascript - 如何将占位符属性添加到 CKEditor 的实例?

转载 作者:搜寻专家 更新时间:2023-11-01 05:00:34 25 4
gpt4 key购买 nike

现在,使用 Alfonso's plugin ,我能够在 config.js 中添加占位符属性。但是,由于我要添加到 config.js,这意味着所有实例都将具有相同的占位符文本,对吗?

好吧,我不希望我的 ckeditor 的所有实例都具有相同的占位符文本,因为我还注意到他还说:

The value can be set in the configuration or as an attribute of the replaced element

我认为这意味着我们可以将“Type something...”作为 ckeditor1 的占位符文本,将“Blabla...”作为 ckeditor2 的占位符文本。我怎么做?或者这不是他的意思?

我尝试了几种方法,包括

    var ckeditor = CKEDITOR.replace('ckeditor1');
ckeditor.placeholder = 'Type sometheing....';

    var config = [];
config['placeholder'] = 'some value'; //or config = [{placeholder:'some value'}]
CKEDITOR.replace("myeditor" , config );

在该特定页面内但无济于事...我还清除了缓存。

最佳答案

我的意思是属性:

<textarea name="editor" placeholder="Type here..."></textarea>

关于你的其他方法,配置是一个对象,所以这应该有效:

var config = {};
config.placeholder = 'some value';
CKEDITOR.replace("myeditor" , config );

关于javascript - 如何将占位符属性添加到 CKEditor 的实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28301703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com