/** * 函数名:addFavorite * 使用说明: 收藏 * 示例:addFavorite(document.title, window.location) */ function addFavorite( sTitle, sURL ) { var url = !is_empty(sURL) ? sURL : window.location; var title = !is_empty(sTitle) ? sTitle : document.title; var ua = navigator.userAgent.toLowerCase(); if (ua.indexOf("360se") > -1) { //360浏览器 alert("由于360浏览器功能限制,请按 Ctrl+D 手动收藏!"); } else if (ua.indexOf("msie 8") > -1) { //IE8浏览器 window.external.AddToFavoritesBar(url, title); } else if (document.all) {//其他IE类浏览器 try{ window.external.addFavorite(url, title); }catch(e){ alert('您的浏览器不支持,请按 Ctrl+D 手动收藏!'); } } else if (window.sidebar) {//firfox等浏览器; window.sidebar.addPanel(title, url, ""); } else { alert('您的浏览器不支持,请按 Ctrl+D 手动收藏!'); } } /** * 函数名:is_empty * 使用说明:判断是否为空 */ function is_empty( obj ){ if(typeof obj == "undefined" || obj == null || obj == ""){ return true; }else{ return false; } } /** * 函数名:toggle_class * 使用说明:类反复添加移除 Class样式 */ function toggle_class( obj, cls ){ if(has_class(obj,cls)){ remove_class(obj, cls); }else{ add_class(obj, cls); } } /** * 函数名:remove_class * 使用说明:移除 Class样式 */ function remove_class( obj, cls ) { if(obj!=null){ if(has_class(obj, cls)) { var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)'); obj.className = obj.className.replace(reg, ' '); } } } /** * 函数名:add_class * 使用说明:添加 Class样式 */ function add_class( obj, cls ) { if(obj!=null){ if (!has_class(obj, cls)){ //this. obj.className += " " + cls; } } } /** * 函数名:has_class * 使用说明:是否存在Class样式 */ function has_class( obj, cls ) { if(obj!=null){ return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)')); }else{ return; } } /** * 函数名:set_time * 使用说明:设置当前时间 */ function set_time( obj ){ var _that_obj = (obj!="") ? obj : "#myTime"; var now = new Date(); var str = now.format('yyyy') + ' 年 '; str = str + now.format('M') + ' 月 ' str = str + now.format('dd') + ' 日 '; str = str + now.getHours() + ':'; str = str + now.getMinutes() + ':'; str = str + now.getSeconds() + '  '; str = str + get_week(now.getDay()); $(_that_obj).html(str); } /** * 函数名:format * 使用说明:扩展Date函数,格式化时间、日期 * author: meizz */ Date.prototype.format = function ( fmt ) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; } /** * 函数名:get_week * 使用说明:获取星期 */ function get_week( day ){ switch(day){ case 0: return "星期日"; case 1: return "星期一"; case 2: return "星期二"; case 3: return "星期三"; case 4: return "星期四"; case 5: return "星期五"; case 6: return "星期六"; } } /** * 函数名:load_js * * 作用:动态加载js文件 * 使用说明 * load_js("https://cdn.bootcss.com/jquery/3.2.1/jquery.js", function() { * //加载,并执行回调函数 * alert('动态引入jquery成功') * }); */ function load_js( url, callback ) { var script = document.createElement("script"); script.type = "text/javascript"; var fn = callback || function(){}; if( script.readyState ) { //IE script.onreadystatechange = function(){ if( script.readyState == 'loaded' || script.readyState == 'complete' ){ script.onreadystatechange = null; fn(); } }; } else { //其他浏览器 script.onload = function(){ fn(); }; } script.src = url; // document.getElementsByTagName('head')[0].appendChild(script); document.body.appendChild(script); } /** * 函数名:is_mobile * * 作用:判断是否为移动端访问 */ function is_mobile() { let userAgentInfo = navigator.userAgent; let mobileAgents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; let mobile_flag = false; //根据userAgent判断是否是手机 for (let v = 0; v < mobileAgents.length; v++) { if (userAgentInfo.indexOf(mobileAgents[v]) > 0) { mobile_flag = true; break; } } return mobile_flag; }