FCKeditor commonly used JS code, get FCK content, statistics FCK words, to FCK write the specified code _ page Editor

Source: Internet
Author: User
Content is equivalent to the FCKeditor1 in your example.
Copy Code code as follows:

Get the formatted editor contents
function geteditorcontents () {
var oeditor = fckeditorapi.getinstance ("content");
Alert (oeditor.getxhtml (true));
}
Inserts the specified code into the editor
function Inserthtmltoeditor (CODESTR) {
var oeditor = fckeditorapi.getinstance ("content");
if (OEDITOR.EDITMODE==FCK_EDITMODE_WYSIWYG) {
Oeditor.inserthtml (CODESTR);
}else{
return false;
}
}
Count the number of contents in the editor
function GetLength () {
var oeditor = fckeditorapi.getinstance ("content");
var ODOM = oeditor.editordocument;
var ilength;
if (document.all) {
Ilength = ODOM.body.innerText.length;
}else{
var r = Odom.createrange ();
R.selectnodecontents (Odom.body);
Ilength = r.tostring (). length;
}
alert (ilength);
}
Perform a specified action
function ExecuteCommand (commandName) {
var oeditor = fckeditorapi.getinstance ("content");
OEditor.Commands.GetCommand (CommandName). Execute ();
}
Setting the contents of the editor
function Setcontents (CODESTR) {
var oeditor = fckeditorapi.getinstance ("content");
Oeditor.sethtml (CODESTR);
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.