After setting document. designMode of iframe, only the body. innerHTML in Firefox is br_javascript.

Source: Internet
Author: User
You can set document. designMode of iframe to On to make it editable. It is generally used in Rich Text Editor components. Here, only the differences between different browsers are shown as follows:

The Code is as follows:





After the document. designMode of iframe is set, only the body. innerHTML of Firefox is br.




Script
Var ifr = document. getElementsByTagName ('iframe') [0];
Var doc = ifr.content##doc ument;
Function prif (){
Lele.log(ifr.content+doc ument. body. innerHTML );
}
Function changeDesignMode (){
Ifr.content+doc ument. designMode = 'on ';
}
Prif ();
Script



The above Code does not contain any html tag in the body of iframe. In normal conditions, ifr.content20.doc ument. body. innerHTML should be a null string. But Firefox is a bit special.
Follow these steps.
Open the html in Firefox and an empty string is output by default.

In the console, run the changeDesignMode method and then the prif method. The output innerHTML is
", As shown below

Chrome/Safari/Opera still outputs a null string.

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.