摘要:
属性: background-position: left top || left bottom || right top || right bottom || center center || 像素值 || 百分比 实例: 代码: 1.设置background-position:left top 阅读全文
摘要:
1、转字符串 其实在js中,一切数据除了null 和undefined之外都自带一个函数,toString,看这个toString,任何东西都有这个toString ,比如 任何东西,都有toString 函数,toString函数可以将任何类型转换为string类型。 咱们先说常规的转换,toSt 阅读全文
摘要:
1,默认绑定this指向windw对象 看代码: function test(C){ var a = 123 function b(){}; } 在预编译环节当中。 OA{ arguments:[1], this : window, C : 1, A : undefined, b : funtion 阅读全文