只有注册用户登录后才能阅读该文。 阅读全文
摘要:
纯css默认:.element { overflow: hidden; }Chrome and Safari.element::-webkit-scrollbar { width: 0 !important }IE 10+..element { -ms-overflow-style: none; }... 阅读全文
摘要:
就是立即调用的函数表达式IIFE(function(){ console.log(this === window); // true}).call(this);(function(){ console.log(this === window); // true})();严格模式(fu... 阅读全文