event的target和currentTarget的区别
target:触发事件的元素。
currentTarget:事件绑定的元素。
本地存储:
localStorage.setItem(“Key001”,”India”);
var country = localStorage.getItem(“Key001”);
实例方法和静态方法
实例方法:原型.prototype.f2=.... || 实例.f2=.. || 原型{ this.f2=... }
静态方法:function.fi=function(){~} //豆浆机的开关
内部方法:原型{ var f3=....; this.f4=fun(){ f3() }} 实例.f4() //闭包调用
css溢出省略号
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap
原文地址:https://www.cnblogs.com/thing/p/9487046.html
时间: 2024-10-15 02:04:06