this指向问题
摘要:1.普通函数调用, 此时this指向全局的window function fn() { console.log(this); // window } fn(); // window.fn(),此处默认省略window 2. 构造函数调用, 此时的this指向实例对象 function Person(
阅读全文
千分符
摘要:/* 设置千分符 */ export function formatCurrency(cellValue) { // 判断传递过来的参数 if (cellValue !== '' && cellValue !== undefined && cellValue !== null) { // 把参数转换
阅读全文