javascript能区分破折号吗?

发布于 2024-11-08 23:53:57 字数 77 浏览 0 评论 0原文

当我使用 test.tested-by 时,javascript 报告 -by 未定义。我确信测试包含经过测试的属性。这里有什么解决办法吗?

when I use test.tested-by, the javascript reports -by is undefined. I am sure test contains tested-by property. Any solution here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

哥,最终变帅啦 2024-11-15 23:53:57

尝试使用 test['tested-by'] 代替。测试者看起来像测试者减去测试者

Try using test['tested-by'] instead. tested-by looks like tested minus by

謌踐踏愛綪 2024-11-15 23:53:57

您需要使用:

test["tested-by"]

通过这种方式,您可以提供任何属性名称,甚至是保留关键字(例如“class”)。

You need to use:

test["tested-by"]

This way you can provide any property name, even reserved keywords (like "class").

暗喜 2024-11-15 23:53:57

请参阅此处的另一个问题:哪些字符对于 JavaScript 变量名称有效?

基本上, a - 不是 javascript 中的有效变量字符。

- 字符也不是有效的 IdentifierName 字符,这意味着您不能使用点表示法。 test.tested-by 不访问属性tested-by。 (您可以使用test['tested-by']。)

See another question here: What characters are valid for JavaScript variable names?

Basically, a - is not a valid variable character in javascript.

The - character is also not a valid IdentifierName character, which means you cannot use the dot notation. test.tested-by does not access the property tested-by. (You can use test['tested-by'].)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文