//功能:停止事件冒泡 function stopBubble(e) { if ( e && e.stopPropagation ) { e.stopPropagation(); } else { // ie old window.event.cancelBubble = true; } } //功能:阻止事件默认行为 function stopDefault( e ) { if ( e && e.preventDefault ) { e.preventDefault();…
js阻止冒泡 (ev || event).cancelBubble = true; 标签切换 <script type="text/javascript"> window.onload = function () { var oUl = document.getElementById('ul_menu'); var oLi = getByClass(oUl, 'item'); var sonUl = getByClass(oUl, 'son'); for (var i =…
转: Redis:默认配置文件redis.conf详解 # Redis配置文件样例 # Note on units: when memory size is needed, it is possible to specifiy # it in the usual form of 1k 5GB 4M and so forth: # # 1k => 1000 bytes # 1kb => 1024 bytes # 1m => 1000000 bytes # 1mb => 1024*10…