CK 编辑器 - 分配 ID
我试图让 CKEditor 使用唯一的 ID,我可以使用一些 jQuery 来获取 ajax 请求中的值。 谁能建议我如何设置编辑器的 ID? 下面是代码 http://pastebin.com/eTP7xnKr
I am trying to get CKEditor to use an unique ID that I can use some jQuery to grab the value within a ajax request.
Can anyone suggest how I can set the ID for the editor?
Below is the code
http://pastebin.com/eTP7xnKr
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的方法,您还可以设置许多其他属性:
$CKEditor->textareaAttributes = array("id" => $fieldname, "cols" => 40, "rows" => 4, 'style' =>“宽度:{$width};高度:{$height};位置:相对;溢出:自动;”);
Try something like this, you can also set many other attributes:
$CKEditor->textareaAttributes = array("id" => $fieldname, "cols" => 40, "rows" => 4, 'style' => "width: {$width}; height: {$height}; position: relative; overflow: auto;");
看看 ckeditor.php 它会告诉你如何做。
抱歉,我没有一个聪明的答案......
Have a look in ckeditor.php it will tell you how.
Sorry, I don't have a clever answer...