this.dataset 现在可以在 Chrome 下运行,FF 也会支持它吗?
我们在 html 标签中使用 data- 前缀将一些数据附加到我们的元素。我们可以通过 Chrome 中的 this.dataset 属性获取该数据,因为我们懒得检查我们的函数是否在不同的浏览器/引擎下工作(顺便说一句,我必须仅支持 FF 和 Chrome,不支持 safari,不支持 IE),现在我们的应用程序在 FF 下失败,因为 FF 不知道什么是“this.dataset”。 FF 也会支持它吗(我们的应用程序要一个月或更长时间才能准备好),还是我们应该重新编写我们的代码?
We are using data- prefix in our html tags to attach some data to our elements. We can get that data by this.dataset property in Chrome and as we are too lazy to check if our functions work under different browsers/engines(by the way i have to support FF and Chrome only, no safari, no IE), now our app is failing under FF because FF does not know what is "this.dataset". Is it going to be supported by FF too(our app is not going to be ready for a month or more), or should we re-write our code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
数据集支持补丁至少要到八月份才会在 Firefox 版本中发布。因此,如果您在一个月内需要某些东西,则不应依赖它。
请参阅https://bugzilla.mozilla.org/show_bug.cgi?id=560112 了解详情。
The patch for dataset support is not going to ship in a Firefox release until at least August. So if you need something in a month, you shouldn't rely on it.
See https://bugzilla.mozilla.org/show_bug.cgi?id=560112 for details.
同时,您可以对数据集使用polyfills,这样您就可以使用该API:
http:// /eligrey.com/blog/post/html-5-dataset-support
https://github.com/remy/polyfills/blob/master/dataset.js
In the meantime you can use polyfills for dataset so you can use that API:
http://eligrey.com/blog/post/html-5-dataset-support
https://github.com/remy/polyfills/blob/master/dataset.js
我会重写它,因为我在 gecko 中没有看到任何东西表明这很快就会到来,而且写起来也不是特别难。
您可能有兴趣知道 jQuery 的 $.data() 方法可以完成您想要的操作 – 您可能想查看 source 看看他们如何解决这个问题,或者只是按原样使用它。
I'd rewrite it, as I haven't seen anything in gecko to suggest this is coming soon, and it's not particularly hard to write.
You may be interested to know that jQuery has it's $.data() method that does what you want – you may want to look at the source to see how they tackle this, or just to use it as is.