Javascript script compatibility in Firefox

Source: Internet
Author: User

The FireFox and IE scripts are incompatible.

 

1. Windows. event compatible scripts

 

 

      Function getEvent () {// get browser events, and be compatible with ie and ff expressions if (document. all) return window. event; func = getEvent. caller; while (func! = Null) {var arg0 = func. arguments [0]; if (arg0) {if (arg0.constructor = Event arg0.constructor = MouseEvent) (typeof (arg0) = "object" & arg0.preventDefault & arg0.stopPropagation )) {return arg0 ;}} func = func. caller;} return null ;}

 

Before each event is used, Firefox needs to use getEvent () to obtain it. Otherwise, it is null.

 

2. Shield Form submission events

 

 

      event.returnValue=false;// for IE evt.preventDefault();//for firefox

 

3. Obtain the event Source

 

 

      var source=event.srcElement //IE var source=event.target //firefox

 

4. Add event compatibility

 

 

      function addEvent(oElement,sEvent,func){ if (oElement.attachEvent){ oElement.attachEvent(sEvent,func); } else{ sEvent=sEvent.substring(2,sEvent.length); oElement.addEventListener(sEvent,func,false); } }

 

Usage: addEvent (window, "onload", Start );

 

5. How to register innerText in Firefox

 

 

      // Register firefox innerText HTMLElement. prototype. _ defineGetter _ ("innerText", function () {var anyString = ""; var childS = this. childNodes; for (var I = 0; I if (childS [I]. nodeType = 1) anyString + = childS [I]. tagName = "BR "? '\ N': childS [I]. innerText; else if (childS [I]. nodeType = 3) anyString + = childS [I]. nodeValue;} return anyString;}); HTMLElement. prototype. _ defineSetter _ ("innerText", function (sText) {this. textContent = sText ;});

 

6. Length: the length of FireFox must be "px". IE doesn't matter.

 

7. Sub-control under the parent control: IE is "children", FireFox is "childNodes"

 

8. XmlHttp

 

In IE, the content of the XmlHttp. send (content) method can be empty, while firefox cannot be empty. send ("") should be used; otherwise, error 411 may occur.

Related Article

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.