Implementation principle of Online Editor (compatible with IE and FireFox)

Source: Internet
Author: User

Online editors are very useful in our daily project development (such as news systems). They can easily edit articles online, saving FrontPage and other tools. So how does one implement the browser's online editing function? Internet Explorer is required first. After IE5.5, there is an editing status. This editing status is used and javascript is used to control online editing.
First, there must be an editing box, which is actually an editable webpage. We use iframe to create an editing box.
<IFRAME id = "HtmlEdit" style = "WIDTH: 100%; HEIGHT: 296px" marginWidth = "0" marginHeight = "0"> </IFRAME>
Add javascript code to specify that HtmlEdit has the Edit function (the complete original code is provided below ):
Copy codeThe Code is as follows:
<Script language = "javascript">
Var editor;
Editor = document. getElementById ("HtmlEdit"). contentWindow;

// Simply enter the following settings and the iframe is immediately changed to the editor.
Editor.doc ument. designMode = 'on ';
Editor.doc ument. contentEditable = true;

// But IE is a little different from FireFox. To be compatible with FireFox, you must create a new document.
Editor.doc ument. open ();
Editor.doc ument. writeln ('Editor.doc ument. close ();

// Font effects-bold method 1
Function addBold ()
{
Editor. focus ();
// All font effects can only be completed using execComman.
Editor.document.exe cCommand ("Bold", false, null );
}
// Font effects-bold method 2
Function addBold ()
{
Editor. focus ();
// Obtain the selected focus
Var sel = editor.doc ument. selection. createRange ();
InsertHTML ("<B>" + sel. text + "</B> ");
}
Function insertHTML (html)
{
If (editor.doc ument. selection. type. toLowerCase ()! = "None ")
{
Editor.doc ument. selection. clear ();
}
Editor.doc ument. selection. createRange (). pasteHTML (html );
}

</Script>

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.