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