默认使用 DWR 对 IE 9 和 chrome 中的值进行排序

发布于 2024-12-12 12:27:49 字数 241 浏览 0 评论 0原文

我有一个地图,其中包含 UI 类中的年份信息 {'2012':"2012",'2011':"2011",'2010':"2010"} ,如果我将此地图传递给 javascript 以使用 DWR 构建下拉列表, Firefox 在我们通过时显示下拉列表,但在 IE9 和 chrome 中,值正在排序,并且在下拉列表中显示从 2010 年到 2012 年。我可以知道为什么它是这样建造的吗?任何人都可以帮助解决这个问题。

我使用的是dwr 2.0版本。

I have a map contains years information in UI class as {'2012':"2012",'2011':"2011",'2010':"2010"} , If I pass this map to javascript to build dropdown using DWR, Firefox displays the drop down as we passed But in IE9 and chrome the values are sorting and it is displaying from 2010 to 2012 in drop down. May I know why it is building like this ?. Can anyone help on this Issue.

I am using dwr 2.0 version.

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

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

发布评论

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

评论(1

泪是无色的血 2024-12-19 12:27:49

如果您使用 for..in 来迭代对象属性,那么您应该知道它们返回的顺序取决于实现,并且不能保证遵循任何特定的系统或模式。

还知道不同的浏览器将以不同的顺序返回属性。如果顺序很重要,请使用其他方法来确定顺序,并仅使用对象为属性名称分配值。

If you are using for..in to iterate over the object properties then you should know that the order in which they are returned is implementation dependent and is not guaranteed to follow any particular system or pattern.

It is also known that different browsers will return the properties in a different order. If order is important, use some other method to determine the order and use the object only to allocate values to property names.

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