我成功地去了工作,并展示。
然而,由于我完全是新到的
这就是我所说的话。
$( #input-content ).ckeditor( , {
toolbar: basic
});
我认为,从我刚才所看到的角度来看,第一种论点意味着背弃义,而第2点是conf。 但这样做根本不会改变编辑。
How do I use Adaptationer?
我成功地去了工作,并展示。
然而,由于我完全是新到的
这就是我所说的话。
$( #input-content ).ckeditor( , {
toolbar: basic
});
我认为,从我刚才所看到的角度来看,第一种论点意味着背弃义,而第2点是conf。 但这样做根本不会改变编辑。
How do I use Adaptationer?
我通过了空洞的职能。
$( textarea#my ).ckeditor($.noop, {
property: value
});
我通过这一法典完成了这项工作。 希望这一帮助。
The html:
<textarea id="txtMessage" class="editor"></textarea>
这里是 j:
try {
var config =
{
height: 180,
width: 515,
linkShowAdvancedTab: false,
scayt_autoStartup: true,
enterMode: Number(2),
toolbar_Full: [[ Styles , Bold , Italic , Underline , SpellChecker , Scayt , - , NumberedList , BulletedList ],
[ Link , Unlink ], [ Undo , Redo , - , SelectAll ]]
};
$( textarea.editor ).ckeditor(config); }
jQuery(function(){
var config = {
toolbar:
[
[ Bold , Italic , Underline , - , NumberedList , BulletedList , - , Undo , Redo , - , SelectAll ],
[ UIColor ]
]
};
jQuery( #textAreaElement ).ckeditor(config);
});
var config = {
toolbar:
[
[ Source , - , Save , NewPage , Preview , - , Templates ],
[ Maximize , ShowBlocks , - , About ]
],
coreStyles_bold: { element : b , overrides : strong }
};
简言之,在我加上核心Styles_bold之前,我的确将“=”从CKAPIC文件改为“:”
$(document).ready(function(){
$( .reply ).click(
function(event){
// Event click Off Default
event.preventDefault();
// CKEditor
$(function(){
var config = {toolbar:[[ Bold , Italic , - , Link , Unlink ]]};
//<?php /*echo"var config = {toolbar:[[ Bold , Italic , - , Link , Unlink ]]};" ;*/ ?>
// DOM class = "cke"
$( textarea.cke ).ckeditor(function(){}, config);
});
return false;
});
});
该文件有正式文件,见jQuerytranser。
1. 舱位法接受两种任择参数:
$( textarea ).ckeditor({ uiColor: #9AB8F3 });
但这并不能确定这一点是否是公平与和解委员会的新特点,而只是想分享我的解决方案(如果它现在帮助任何寻求这种解决办法的人):
$("textarea.youreditor").ckeditor
(
{
customConfig: "/path/to/custom/config.js"
}
);
......和我的意见一样(只是抄录了缺省会):
CKEDITOR.editorConfig = function(config)
{
config.toolbar_Full =
[
{ name: basicstyles , items : [ Bold , Italic , Underline , Strike , Subscript , Superscript , - , RemoveFormat ] },
{ name: paragraph , items : [ NumberedList , BulletedList , - , Outdent , Indent , - , JustifyLeft , JustifyCenter , JustifyRight , JustifyBlock ] },
{ name: insert , items : [ Image , Flash , Table , HorizontalRule , Smiley , SpecialChar , PageBreak , Iframe ] },
{ name: colors , items : [ TextColor , BGColor ] }
];
};
How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.
I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...
Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph? The array is multidimensional, with three elements in each part - and the ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.