Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用类似于 javascript 中的 java 的键值对来实现简单的哈希映射。我想映射索引和相应的页码,索引作为键,页码作为值。
例如 --> index - 1 , pagenumber-10
如何在java脚本中实现这个?
您可以使用 javascript 对象,您可以在其中拥有键值参数,例如:x = { index : 1, pagenumber : 10 }
您可以在对象内部包含对象,例如:
x = { a : { index : 1, pagenumber : 10}, b : { chapter : 1, pagenumber : 20 } }
你可以像下面这样访问它:
x.a.index which gives you 1 x.a.pagenumber which gives you 10