随笔分类 -  js

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要://先定义一个某数值范围内的随机数 // 克隆数组方法 //洗牌 //调用 阅读全文
posted @ 2018-09-12 10:43 abcByme 阅读(1231) 评论(0) 推荐(0) 编辑
摘要://调用 const transform = prefixStyle('transform') const backdrop = prefixStyle('backdrop-filter') div.style[transform] = `translate3d(0,0,0)` 等同于 div.st 阅读全文
posted @ 2018-09-07 15:51 abcByme 阅读(1111) 评论(0) 推荐(0) 编辑
摘要:来自:https://blog.csdn.net/wd4java/article/details/50466633 侵删 以下我们将为大家介绍 JavaScript 保留两位小数的实现方法:四舍五入以下处理结果会四舍五入: ? 1 2 var num =2.446242342; num = num. 阅读全文
posted @ 2018-09-06 09:51 abcByme 阅读(16780) 评论(0) 推荐(1) 编辑
摘要:来自:https://blog.csdn.net/qq_37120738/article/details/79086706 侵删 slice() 定义和用法 slice() 方法可从已有的数组中返回选定的元素。 string.slice(start, end)提取一个字符串 string.subst 阅读全文
posted @ 2018-09-03 09:46 abcByme 阅读(5645) 评论(0) 推荐(2) 编辑
摘要:来自:http://www.cnblogs.com/fangshidaima/p/5910604.html 侵删 forEach是ES5中操作数组的一种方法,主要功能是遍历数组,例如: 1 2 var arr = [1,2,3,4]; arr.forEach(alert); 1 2 var arr 阅读全文
posted @ 2018-08-31 14:21 abcByme 阅读(801) 评论(0) 推荐(0) 编辑
摘要:addClass(元素, 'item-类名') 阅读全文
posted @ 2018-08-30 09:18 abcByme 阅读(3431) 评论(0) 推荐(1) 编辑
摘要:if (window["context"] == undefined) { if (!window.location.origin) { window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + wi... 阅读全文
posted @ 2018-08-22 16:56 abcByme 阅读(722) 评论(0) 推荐(0) 编辑
摘要:var shine=0.8; var arrays = ['[255,182,193,0.8]','[144,238,144,0.8]','[255,235,205,0.8]','[240,128,128,0.8]','[255,186,0,0.8]','[255,225,189,0.8]','[227,229,241,0.8]','[248,228,239,0.8]','[223,237,2... 阅读全文
posted @ 2018-08-10 16:11 abcByme 阅读(1056) 评论(1) 推荐(1) 编辑
摘要:https://www.zhangxinxu.com/wordpress/2017/07/js-text-string-download-as-html-json-file/ 侵删 1.H5 download属性 downFile(下载地址, 保存名称); 2.iframe方式 3.form方式 阅读全文
posted @ 2018-07-13 16:12 abcByme 阅读(20626) 评论(4) 推荐(1) 编辑
摘要:var tree = [ { name: 'node1' }, { name: 'node2', children: [{ name: 'node-2-1' }, { name: 'node2-2' }] }, { name: 'node3', children: [{ name: 'node-3-1', children: [{ name: 'node3-1-1' }]... 阅读全文
posted @ 2018-06-28 18:37 abcByme 阅读(3817) 评论(0) 推荐(0) 编辑
摘要:function loadIframe(url) { //获取url链接 var u = window.location.href; //因为每次获取的链接中都有之前的旧锚点, //所以需要把#之后的旧锚点去掉再来加新的锚点(即传入的url参数) var end = u.indexOf("#"); var rurl = u.substring(0,... 阅读全文
posted @ 2018-05-25 10:46 abcByme 阅读(596) 评论(0) 推荐(0) 编辑
摘要:<input type="file" onchange="angular.element(this).scope().addPhoto(this,event)" accept="image/*" id="carPhotoFile"> 在js 的成功回调函数中 $scope.addPhoto = fu 阅读全文
posted @ 2018-05-25 10:05 abcByme 阅读(1524) 评论(0) 推荐(1) 编辑
摘要:图片预览 图片预览 --> 阅读全文
posted @ 2018-04-25 18:23 abcByme 阅读(1353) 评论(0) 推荐(0) 编辑
摘要:图片上传 /static/img/H5_addPhoto.png" alt="picture"> /*图片上传*/ .photo - box { padding: 10 px; display: inline - block; } ... 阅读全文
posted @ 2018-04-24 14:28 abcByme 阅读(1756) 评论(3) 推荐(0) 编辑
摘要:var arr = [ {a:1,b:2,c:3}, {a:4,b:5,c:6}, {a:7,b:8,c:9} ]; arr1=[]; arr.forEach(function(v){ arr1.push(v.a);}); console.log(arr1); 阅读全文
posted @ 2018-04-19 15:46 abcByme 阅读(12487) 评论(0) 推荐(0) 编辑
摘要:参考:http://www.jb51.net/article/117191.htm 侵删 css 部分 js 部分 调用 阅读全文
posted @ 2018-03-29 16:00 abcByme 阅读(542) 评论(0) 推荐(0) 编辑
摘要:function returnFloat(value) { var value = Math.round(parseFloat(value) * 100) / 100; var xsd = value.toString().split("."); if (xsd.length == 1) { val 阅读全文
posted @ 2018-03-28 11:36 abcByme 阅读(816) 评论(2) 推荐(0) 编辑
摘要:账单打印 Ι 收据打印 返回账单列表 打印 ... 阅读全文
posted @ 2018-03-22 19:31 abcByme 阅读(1270) 评论(0) 推荐(0) 编辑
摘要:function smalltoBIG(n) { var fraction = ['角', '分']; var digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']; var unit = [ ['元', '万', '亿'... 阅读全文
posted @ 2018-03-22 18:21 abcByme 阅读(1384) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页