标签:style blog color io ar sp div on cti
错误写法如下:(我以为这样写是对的,结果在很多浏览器都运行出错,只在火狐浏览器中运行正常,可能火狐浏览器兼容了这种写法)。
function test(a,b=0){ ...... }
正确的写法如下:
function test(a,b){ if(!arguments[1]) b=0; ...... }
arguments[0]表示第一个参数a arguments[1]表示第二个参数b
当第二个参数b不存在时,给b赋默认值0
标签:style blog color io ar sp div on cti
原文地址:http://www.cnblogs.com/hereim/p/4025817.html