JavaScript-Learn

JavaScript 比较和逻辑运算符

1、var x = 5;x == 5为true;x === 5 为true;x ==="5"为false。

Window 尺寸

var w=window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;

var h=window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
原文地址:https://www.cnblogs.com/iwhk/p/3298728.html