摘要:
去重 去空 String.prototype.trim=function(){ return this.replace(/(^\s+)|(\s+$)g,'') } str.trim() function trim(str){ return str.replace(/(^\s+)|(\s+$)/g,' 阅读全文
2017年5月14日
2017年5月11日
摘要:
cookie: 存储一些简单的数据,以文本形式放到本地,大小4kb 存储:document.cookie='name=value' 取值:document.cookie(字符串) 期限:expires=time localStorage 优 点:无时间限制,可跨越多窗口 存 储:loaclStora 阅读全文
2017年5月10日
2017年5月9日
摘要:
1.javascript的typeof返回哪些数据类型 Object、number、 function、 boolean、 underfind 2.例举3种强制类型转换和2种隐式类型转换? 强制(parseInt,parseFloat,number) 隐式(== – ) 3.split() join 阅读全文