分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

什么都不说,来4波js

发布时间:2023-09-06 01:06责任编辑:赖小花关键词:js

1111

/*页面刷新*/function reload(){ ???// window.parent.location.reload(); ???var parentWin = window.parent; ???switch(type){ ???case‘top‘: ???????window.parent.location.reload(); ???????break; ???case‘parent‘: ???????parentWin.location.reload(); ???????break; ???default: ???????window.location.reload(); ???????break; ???}}

222

/*url定制url加密解密encodeURI() 函数可把字符串作为 URI 进行编码decodeURI() 函数可对 encodeURI() 函数编码过的 URI 进行解码。*///获取上级目录urlfunction getUpperUrl(){ ???var url = window.location.href; ???var index = url.lastIndexOf("\/"); ???url ?= url.substring(0,index + 1); ???return url;}// 加密,解密function encode(uri){ ???return encodeURI(uri);}function decode(uri){ ???return decodeURI(uri);}

333

/**创建遮罩 * @param dom 将遮罩插入dom中 */function createShade(dom){ ???var div = $(‘<div>‘); ???div.addClass(‘shade‘); ???div.attr({ ???????//id : ‘layui-layer-shade3‘, ???????//times : ‘3‘, ???????style : ‘z-index:19891016; background-color:#000; opacity:0.2; filter:alpha(opacity=30);left:0;top:0;width:100%;height:100%;position:absolute;‘, ???}); ???if(dom == undefined){ ???????dom = ‘#tablelist‘; ???} ???if(!$(‘.shade‘).get(0)){ ???????$(dom).append(div); ???}}//取消遮罩function removeShade(){ ???$(‘.shade‘).remove();}
View Code

444

//获取当前时间function getNowFormatDate() { ???var date = new Date(); ???var seperator1 = "-"; ???var seperator2 = ":"; ???var month = date.getMonth() + 1; ???var strDate = date.getDate(); ???if (month >= 1 && month <= 9) { ???????month = "0" + month; ???} ???if (strDate >= 0 && strDate <= 9) { ???????strDate = "0" + strDate; ???} ???var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate ???????????+ " " + date.getHours() + seperator2 + date.getMinutes() ???????????+ seperator2 + date.getSeconds(); ???return currentdate;}//金额格式转换function formatNum(str){ ???var newStr = ""; ???var count = 0; ???????str = String(parseFloat(str)); ???????if(str.indexOf(".")==-1){ ??????????for(var i=str.length-1;i>=0;i--){ ????????????if(count % 3 == 0 && count != 0){ ??????????????????newStr = str.charAt(i) + "," + newStr; ????????????}else{ ??????????????????newStr = str.charAt(i) + newStr; ????????????} ????????????count++; ??????????} ??????????str = newStr + ".00"; //自动补小数点后两位 ??????????return str; ???}else{ ??????????for(var i = str.indexOf(".")-1;i>=0;i--){ ????????????if(count % 3 == 0 && count != 0){ ??????????????????newStr = str.charAt(i) + "," + newStr; ????????????}else{ ??????????????????newStr = str.charAt(i) + newStr; //逐个字符相接起来 ????????????} ????????????count++; ??????????} ??????????str = newStr + (str + "00").substr((str + "00").indexOf("."),3); ??????????return str; ???}};
View Code

什么都不说,来4波js

原文地址:http://www.cnblogs.com/alan-alan/p/7428400.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved