上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 34 下一页
摘要: 当replace() 方法的第二个参数 replacement是函数而不是字符串时,每次匹配都调用该函数,将这个函数的返回的字符串将作为替换文本使用。这个函数是自定义的替换规则。 当第二个参数是函数时,这个函数的前三个参数(): 1、当正则没有分组的时候,传进去的第一个实参是正则捕获到的内容,第二个 阅读全文
posted @ 2020-06-03 10:08 smil、梵音 阅读(2091) 评论(0) 推荐(0) 编辑
摘要: 利用插件 purl.js,比如获取url中传递过来的参数 id 的值,代码为: let href = window.location.href; let url = $.url(href); let roleId = url.param('id'); 阅读全文
posted @ 2020-06-01 17:17 smil、梵音 阅读(1646) 评论(0) 推荐(0) 编辑
摘要: 使用Object.prototype上的原生toString()方法判断数据类型,使用方法如下: Object.prototype.toString.call(value) 1.判断基本类型: Object.prototype.toString.call(null);//”[object Null] 阅读全文
posted @ 2020-05-11 10:54 smil、梵音 阅读(843) 评论(0) 推荐(0) 编辑
摘要: var oDate = new Date();console.log(oDate.getTime()); //时间戳 1588834927764 console.log(oDate.toLocaleTimeString()); // 3:02:48 PM console.log(oDate.toLo 阅读全文
posted @ 2020-05-07 15:10 smil、梵音 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 阮一峰的博客:http://www.ruanyifeng.com/blog/2010/05/object-oriented_javascript_inheritance.html 阅读全文
posted @ 2020-05-06 14:27 smil、梵音 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 在页面中引入 jquery.cookie.js 就可以使用。 具体的用法可以百度。 阅读全文
posted @ 2020-04-29 11:25 smil、梵音 阅读(128) 评论(0) 推荐(0) 编辑
摘要: iview : http://v1.iviewui.com/ PC端:element-ui 移动端:mint、vant、cube-ui、vux 阅读全文
posted @ 2020-04-27 15:22 smil、梵音 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 参考网址:https://blog.csdn.net/qq_41802303/article/details/80066160 我自己的代码:(用vue开发的,用的elementui) //文件上传 upLoadFile(params) { console.log("文件上传的参数",params) 阅读全文
posted @ 2020-04-26 11:31 smil、梵音 阅读(654) 评论(0) 推荐(0) 编辑
摘要: npm install module_name -S 即 npm install module_name --save 写入dependencies npm install module_name -D 即 npm install module_name --save-dev 写入devDepend 阅读全文
posted @ 2020-03-17 23:31 smil、梵音 阅读(129) 评论(0) 推荐(0) 编辑
摘要: package.json一般也就长这么模样: { "name": "", "description": "", "version": "4.17.1", "author": "", "contributors": [], "license": "MIT", "repository": "", "ho 阅读全文
posted @ 2020-03-17 23:17 smil、梵音 阅读(976) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 34 下一页