1. 屏蔽右上角三个点的分享功能 function onBridgeReady() { //隐藏右上角按钮 WeixinJSBridge.call('hideOptionMenu'); } if (typeof WeixinJSBridge == "undefined") { //屏蔽分享按钮 if ...
分类:
微信 时间:
2020-06-05 11:40:40
阅读次数:
148
首先我们要知道new操作符做了什么 创建一个空的对象,即{} 空对象的原型指向构造函数的原型,即设置该对象的构造函数 让this指向新创建的空对象,即新创建的对象作为this的上下文 判断返回值的类型,如果是值类型就是返回新的创建对象,如果是引用类型就返回引用类型的对象。(如果没有返回对象类型obj ...
分类:
编程语言 时间:
2020-06-04 19:35:47
阅读次数:
92
什么是回形字符串:可以对称的字符串,例如aaabaaa,aabbbbaa function run(input){ if(typeof input !== 'string') return false; return input.split('').reverse().join('') input ...
分类:
其他好文 时间:
2020-06-04 15:22:52
阅读次数:
71
1、数组浅拷贝 var arr = [1, 2, [3, 4] ]; 第一种:var arr1 = arr.slice(0) 第二种:var arr2 = arr.concat() arr[2][0] = 8; arr[0]= 9; console.log(arr) // [9, 2, [8, 4] ...
分类:
其他好文 时间:
2020-06-03 23:36:28
阅读次数:
107
// var num = 10; // console.log(typeof num); // number // var str = 'eric'; // console.log(typeof str); //string // var flag = true; // console.log(ty ...
分类:
其他好文 时间:
2020-06-03 20:25:14
阅读次数:
68
##typeof六种数据类型 number、string、boolean、object、function、undefined typeof用于检测数据的类型,返回的是相应数据类型的字符串格式。 typeof(typeof(a)) 未经定义的变量在控制台中直接报错,not undefined。只有在t ...
分类:
其他好文 时间:
2020-06-02 22:56:11
阅读次数:
67
// 封装type,区分typeof方法 // 1)先分类,原始值,引用值 // 2)区分引用值,先判断是不是null // 数组,对象,包装类(new number )会返回object,通过Object.prototype.toString function type(target){ var ...
分类:
其他好文 时间:
2020-06-01 20:32:46
阅读次数:
65
现在在2020年了,jonmiles/bootstrap-treeview 项目已经归档了,并且最后一次更新在2015年。但是,项目中使用到了这个库,所以,没得选择,只能粪不顾身跳入坑里。 这篇文章主要吐槽bootstrap-treeview的两个方法:checkNode 和 expandNode ...
分类:
其他好文 时间:
2020-06-01 12:00:00
阅读次数:
123
在写js脚本的时候经常遇到对象为空或者不是对象的情况,出现这种情况我们可以用if去判断它,然后去执行相应的处理方法,具体判断他们的方法有以下几种: 1、if (typeOf(x) == "undefined") 2、if (typeOf(x) != "object") 3、if(!x) 其中第三种是 ...
分类:
Web程序 时间:
2020-05-31 19:54:21
阅读次数:
104
ES5:(有重复问题) typeof 1 > 'number' typeof 'hello' > 'string' typeof alert > 'function' typeof [1,2,3] > 'object' typeof {a:1,b:2} > 'object' typeof null ...
分类:
Web程序 时间:
2020-05-27 12:25:13
阅读次数:
96