201605-26 【转】4个Bootstrap3开发的后台管理模板 第一个Bootstrap后台管理模板:HTML5 Admin HTML5 Admin is mobile first and responsive justlike Bootstrap 3 and all of its features and add-ons are styled to wo.... Read More >
201605-24 网站日志中显示Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari 很久很久以前有一个浏览器名字叫 NCSA Mosaic 很久很久以前有一个浏览器名字叫 NCSA Mosaic 紧接着也出现了一个 Mozilla 的浏览器 (Mozilla 的意思是 Mosaic 终结者) 后来 Mozilla 的正式发布版本是 Netscape 它把自己标称为Mozilla/1.0 (Win3.1) 由于 Netscape支持框架显示,后来框架在大家中间流行起.... Read More >
201605-05 根据用户输入的Email跳转到相应的邮箱登录页面 //功能:根据用户输入的Email跳转到相应的电子邮箱首页 function gotoEmail($mail){ $t=$mail.split('@')[1]; $t=$t.toLowerCase(); if($t=='163.com'){ return 'mail.163.com'; }else if($t=='vip.163.com'){ .... Read More >
201605-05 js弹出新窗口而不会被浏览器阻止的方法 <form id="emailForm" action="mail.qq.com" method="get" target="_blank"> <input type="hidden" id="isHidden" value="yiwo"/> </form> function(){ $("#emailForm").attr("acti.... Read More >