Javascript cross-browser attribute Judgment Method

Source: Internet
Author: User
Tags hasownproperty

Today, when I write code, I find it very error-prone. When declaring variables, we often have different API definitions for different browsers, and then use the following statement to determine which attribute, for example:
Copy codeThe Code is as follows: var fullscreenElement = document. javasfullscreenelement | document. webkitFullscreenElement | document. fullscreenElement;
Use | to check which attribute to use.
However, be careful when javascript values are considered as conditions.
For example:
Copy codeCode: var sLeft = window. screenLeft | window. screenX; // firefox use screenX
Console. log (sLeft );
This Code expects that screenLeft will return window. screenLeft, while firefox will return window. screenX.
However, if screenLeft is equal to 0, it will enter the | condition, and then gg.

Therefore, it is recommended to use hasOwnProperty or typeof to judge the value in an Orthodox way.
Copy codeCode: var sLeft = window. screenLeft;
If (! Window. hasOwnProperty ('screenleft') sLeft = window. screenX;

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.