摘要:
this对象 1.纯粹的函数调用 function test(){ this.x = 1; alert(this.x); } test();//1 2.函数作为某个对象的方法进行调用,这是this就指向这个上级的对象。 function test() { alert(this.x); } var o 阅读全文
摘要:
网页瀑布流效果实现的几种方式 前言 like a mountain that is in our path,wo cannot complain that it is there,we simply have to climb it 起由 最近,在搭建个人博客时,其中的Demo展示页面想用瀑布流形式 阅读全文