看到这么一篇文章:http://www.tuicool.com/articl...
代码片段:
例子2这么一行:return arguments[0].style[arguments[1]];
为什么不是 这样的写法?return arguments[0].style.arguments[1];
不是用点而是用的[],数组?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
.运算符访问属性时,属性名是写定的,不能够根据表达式动态的生成属性名的.[]运算符访问属性时,可以根据[]里面的表达式动态生成属性名,得到属性名这个字符串.style.arguments[1]相当于style['arguments'][1]