摘要:
ES6支持在定义函数的时候为其设置默认值: function foo(height = 50, color = 'red') { console.log(height); console.log(color); } foo(0, ""); 普通函数: function foo(height, col 阅读全文
posted @ 2020-04-18 21:49
苹果π
阅读(338)
评论(0)
推荐(0)
摘要:
普通函数:this 永远指向调用它的对象,new的时候,指向new出来的对象。 箭头函数:箭头函数没有自己的 this,当在内部使用了 this时,它会指向最近一层作用域内的 this。 //例1 var obj = { name: 'latency', sayName: function(){ c 阅读全文
posted @ 2020-04-18 21:35
苹果π
阅读(273)
评论(0)
推荐(0)
摘要:
用jquery写一个按钮点击事件很简单的吧,选中这个点击的按钮也很简单,直接$(this)就可以选中了。 //html <button class="btn">点击一下嘛</button> //js // 普通函数 $('.btn').click(function(){ alert('我要消失啦') 阅读全文
posted @ 2020-04-18 20:42
苹果π
阅读(1007)
评论(0)
推荐(0)
摘要:
函数分为有名函数和匿名函数。 匿名函数: (function(){ console.log('匿名函数立即执行了!'); })(); 有名函数: var hasName = function(){ console.log('有名函数立即执行了!'); }(); 匿名函数带参数: (function( 阅读全文
posted @ 2020-04-18 19:51
苹果π
阅读(210)
评论(0)
推荐(0)

浙公网安备 33010602011771号