美文网首页
2020-07-10 点运算符

2020-07-10 点运算符

作者: 帅气的昵称吧啊 | 来源:发表于2020-07-10 11:00 被阅读0次

在使用点运算符时,浏览器看到“-”就没法正确解析了,在那种情况下,只能将该变量使用驼峰命名法来表示。而使用方括号表示法,"-"被理解为字符串中的内容,该字符串能被正确解析。

eg:


inputElement.style.backgroundColor = 'red'; // 这是没问题的

inputElement.style.background-color = 'red'; // 这是错的,浏览器看不懂啊...

inputElement.style["background-color"] = 'red'; // 这也是可以的


相关文章

网友评论

      本文标题:2020-07-10 点运算符

      本文链接:https://www.haomeiwen.com/subject/zlbpcktx.html