function aaa(){ window.close(); } function ck() { console.profile(); console.profileEnd(); if(console.clear) { console.clear() }; if (typeof console.profiles =="object"){ return console.profiles.length > 0; } } function hehe(){ if( (window.console && (console.firebug || console.table && /firebug/i.test(console.table()) )) || (typeof opera == 'object' && typeof opera.postError == 'function' && console.profile.length > 0)){ aaa(); } if(typeof console.profiles =="object"&&console.profiles.length > 0){ aaa(); } } hehe(); window.onresize = function(){ if((window.outerHeight-window.innerHeight)>200) aaa(); }

随笔分类 -  哈希

摘要:题目描述 The cows enjoy mooing at the barn because their moos echo back, although sometimes not completely. Bessie, ever the excellent secretary, has been 阅读全文
posted @ 2019-07-16 19:12 华恋~韵 阅读(413) 评论(0) 推荐(0)
摘要:哈希(hash) 对于我来说,HASH就像一个加密软件,你输入一个值,他就会输出值,并且比之前的值更优,更方便。而这个值呢,就叫做哈希值。然后字符串哈希就是输入一个字符串,把它转成对应的HASH值就行了。 对于每个字符串,我们通过一个固定的转换方式,使相同字符串的哈希值一定相同,不同字符串的值尽量不 阅读全文
posted @ 2019-07-16 16:59 华恋~韵 阅读(980) 评论(0) 推荐(0)