


Implementation principle of online editor (compatible with IE and FireFox)_javascript skills
May 16, 2016 pm 07:17 PMOnline editors are very useful in our daily project development (such as news systems). It can easily implement online editing of articles, eliminating the need for tools such as FrontPage. So how to implement the online editing function of the browser? First of all, it requires the support of IE. After IE5.5, there is an editing state. This editing state is used, and then javascript is used to control the online editing.
First of all, there must be an edit box. This edit box is actually an editable web page. We use iframe to create the edit box.
<IFRAME id="HtmlEdit" style="WIDTH: 100%; HEIGHT: 296px" marginWidth="0" marginHeight="0"></IFRAME>
And add javascript code to Specify HtmlEdit to have editing function (the complete original code is provided below):
<script language="javascript">
var editor;
editor = document.getElementById("HtmlEdit").contentWindow;
//Just type the following settings, iframe Become an editor immediately.
editor.document.designMode = 'On';
editor.document.contentEditable = true;
//But IE is a little different from FireFox. In order to be compatible with FireFox, a new document must be created .
editor.document.open();
editor.document.writeln('<html><body></body></html>');
editor.document.close ();
//Font effects – Bold method one
function addBold()
{
editor.focus();
//All font effects just use execComman( ) can be completed.
editor.document.execCommand("Bold", false, null);
}
//Font effects - Bold method two
function addBold()
{
editor. focus();
//Get the selected focus
var sel = editor.document.selection.createRange();
insertHTML("<b>" sel.text "</b>" );
}
function insertHTML(html)
editor.document .selection.clear() ;

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Replace String Characters in JavaScript

10 Ajax/jQuery Autocomplete Tutorials/Plugins
